Darkling Dark mode

Darkling Dark mode

Turn on dark mode for web sites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Darkling Dark mode",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "popup/popup.html",
    "default_icon": "icons/icon-128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": "script-src 'self' https://www.google-analytics.com; object-src 'self'",
  "default_locale": "en",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png",
    "300": "icons/icon-300.png"
  },
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "permissions": [
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "version": "1.5.6",
  "web_accessible_resources": [
    "/css/*.css"
  ]
}