Dark Mode Kali

Dark Mode Kali

Dark mode can used to protect eyes from harsh brightness

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dark Mode Kali",
  "description": "Dark mode can used to protect eyes from harsh brightness",
  "default_locale": "en",
  "icons": {
    "32": "img/32.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "browser_action": {
    "default_icon": "img/64.png",
    "default_title": "__MSG_name__",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "js/storage.js",
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "storage",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "css/darkmode.css",
    "css/yt.css"
  ],
  "manifest_version": 2,
  "version": "0.0.2"
}