Go Dark Mode

Go Dark Mode

Install Go Dark Mode Extension to enable Dark Reader on any webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appTitle__",
  "version": "1.0.3",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>"
  ],
  "icons": {
    "128": "darkLight.png"
  },
  "browser_action": {
    "default_icon": "darkLight.png",
    "default_title": "__MSG_appDefaultTitle__"
  },
  "content_security_policy": "script-src 'self' 'sha256-XPXTT1UshpgwCgVqCHHlIsFwX/ez74PNQIN24esAYZs='; object-src 'self'",
  "background": {
    "scripts": [
      "background/background.js"
    ]
  },
  "optional_permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/jquery.min.js",
        "content/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "public/*"
  ]
}