Dark Mode

Dark Mode

Dark mode allows you to change the colour theme of Chrome from white to black.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "page": "background.html",
    "persistent": false
  },
  "browser_action": {
    "default_icon": "img/enable.png",
    "default_title": "__MSG_short_name__"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "128": "img/enable.png"
  },
  "manifest_version": 2,
  "name": "__MSG_name__",
  "permissions": [
    "storage",
    "tabs",
    "<all_urls>",
    "contextMenus"
  ],
  "short_name": "__MSG_short_name__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.1"
}