Black Mode for Browser!

Quick change to black theme for the web
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Black Mode for Browser!",
  "description": "Quick change to black theme for the web",
  "short_name": "black-mode",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "48": "icons/48.png",
      "64": "icons/64.png"
    },
    "default_title": "Black Mode for Browser!"
  },
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "48": "icons/48.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "data/append/config.css"
      ],
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "data/rules/rules.js",
        "data/append/config.js",
        "data/append/resources/jquery.js",
        "data/append/resources/native.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "data/rules/rules.js",
      "background/config.js",
      "background/browser.js",
      "background/run.js",
      "background/started.js"
    ]
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "offline_enabled": true,
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "web_accessible_resources": [
    "data/append/custom/*",
    "data/append/general/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}