Dark Mode 2.0 For All Websites

Dark Mode 2.0 For All Websites

Turn on dark mode for your favorite sites. Try Dark Theme or Night Mode for Youtube, Facebook and other sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "short_name": "__MSG_extShortName__",
  "version": "1.2.0",
  "default_locale": "en",
  "background": {
    "scripts": [
      "/bg/background.js"
    ]
  },
  "permissions": [
    "storage",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "gcm",
    "cookies"
  ],
  "browser_action": {
    "default_icon": "assets/icons/black/icon_128.png",
    "default_popup": "html/popup.html",
    "default_title": "Dark Mode 2.0"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "/js/themes.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "32": "img/icon_32.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png"
  },
  "web_accessible_resources": [
    "/assets/css/*.css"
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}