Dark Mode Chrome

Dark Mode Chrome

Dark chrome mode for all sites. Changes website colors to more pleasing to the eye.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "short_name": "__MSG_short_name__",
  "description": "__MSG_description__",
  "manifest_version": 3,
  "version": "1.0.46",
  "default_locale": "en",
  "action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "tabs",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "icons": {
    "128": "img/enable.png"
  }
}