Dark Mode

Dark Mode

You can now turn on dark mode on any site.

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": "__MSG_extName__",
  "description": "You can now turn on dark mode on any site.",
  "icons": {
    "128": "/assets/icon/128.png"
  },
  "version": "1.3",
  "permissions": [
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "browser_action": {
    "default_popup": "/pages/popup/index.html",
    "default_icon": "/assets/icon/64.png"
  },
  "background": {
    "scripts": [
      "/pages/control/first.js",
      "/pages/control/bottom.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "/pages/every/jquery.min.js",
        "/pages/every/every.js",
        "/pages/every/utils.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "*.css"
  ]
}