Dark Theme Tab

Dark Theme Tab

Save your eyes and view any site in dark mode

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "Dark Theme Tab",
  "version": "0.4.3",
  "description": "__MSG_extDescription__",
  "manifest_version": 3,
  "author": "jack",
  "action": {},
  "chrome_url_overrides": {
    "newtab": "./views/main.html"
  },
  "background": {
    "service_worker": "./background_js/service_worker.js"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "./images/logo_16.png",
    "32": "./images/logo_32.png",
    "128": "./images/logo_128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "css": [],
      "js": [
        "./behaviours/amazon/amazon.js",
        "./behaviours/bing/bing.js",
        "./behaviours/drive/drive.js",
        "./behaviours/ebay/ebay.js",
        "./behaviours/facebook/fb.js",
        "./behaviours/global/global.js",
        "./behaviours/google/google.js",
        "./behaviours/netflix/netflix.js",
        "./behaviours/quora/quora.js",
        "./behaviours/twitter/twitter.js",
        "./behaviours/wikipedia/wikipedia.js",
        "./behaviours/yahoo/yahoo.js",
        "./behaviours/youtube/youtube.js",
        "./behaviours/index.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}