Dark Mode

Dark Mode

With this extension you can enable dark mode on popular websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "Dark Mode",
  "description": "With this extension you can enable dark mode on popular websites",
  "icons": {
    "16": "media/img/favicon-16.png",
    "48": "media/img/favicon-48.png",
    "128": "media/img/favicon-128.png"
  },
  "version": "1.6",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "media/img/favicon-128.png"
  },
  "background": {
    "scripts": [
      "background/init.js",
      "js/chrome.js",
      "js/context.js",
      "bkg.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "vendor/jquery.js",
        "js/blue_eyes.js",
        "js/main.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "/media/**/*.css"
  ]
}