GitHub Timestamp Privacy

GitHub Timestamp Privacy

GitHub Privacy redacts commit and comment creation dates on GitHub. You can choose the level of redaction.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "version": "2.0",
  "short_name": "__MSG_appShortName__",
  "homepage_url": "https://github.com/EMPRI-DEVOPS/empri-browser-extension",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "images/on-16.png",
    "32": "images/on-32.png",
    "48": "images/on-48.png",
    "96": "images/on-96.png",
    "128": "images/on-128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js",
      "scripts/study.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/on-19.png",
      "38": "images/on-38.png"
    },
    "default_title": "__MSG_browserActionTitle__",
    "default_popup": "pages/popup.html"
  },
  "options_ui": {
    "page": "pages/options.html",
    "browser_style": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/fuzzydate.js",
        "scripts/redact.js"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}