Dark Browse

Dark Browse

Dark Browse is an extension that helps you switch quickly websites (browser) to dark mode. Switching your browser to dark mode…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "description": "",
  "manifest_version": 3,
  "name": "Dark Browse",
  "default_locale": "en",
  "version": "1.0.0.96",
  "permissions": [
    "tabs",
    "storage",
    "alarms"
  ],
  "icons": {
    "16": "img/16.png",
    "48": "img/48.png",
    "128": "img/128.png"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_icon": {
      "16": "lightmode16.png"
    },
    "default_title": "Toggle Dark Mode"
  }
}