Dark Mode for Web

Dark Mode for Web

Turn on Dark Mode for Web Page. Take care of your eyes, and use a dark theme for the 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__",
  "description": "__MSG_extDescription__",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png",
    "512": "icons/512.png"
  },
  "version": "1.0.7",
  "manifest_version": 3,
  "default_locale": "en",
  "action": {
    "default_title": "__MSG_titleDefault__",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png",
      "64": "icons/64.png",
      "128": "icons/128.png",
      "512": "icons/512.png"
    }
  },
  "background": {
    "service_worker": "scripts/bg.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}