Examine source code of Dark Master

Inspect and view changes in Dark Master source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "contextMenus",
    "storage",
    "scripting",
    "background"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "dark.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "shift.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "ads.html",
  "manifest_version": 3,
  "version": "0.0.13",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}