Dark Mode - Dark Reader for Сhrome

Dark Mode - Dark Reader for Сhrome

Dark Mode a classic dark theme for every website. Switch website to dark reader and for night and daily browsing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "32": "images/32.png",
    "64": "images/64.png",
    "128": "images/128.png"
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_globs": [
        "*/chrome/newtab*"
      ],
      "js": [
        "/scripts/content/inject.js"
      ],
      "css": [
        "css/inject.css"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": "assets/icons/dark/128.png"
  },
  "options_page": "сomponents/options.html",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "contextMenus",
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "version": "1.4.10"
}