Toggle darkmode

Toggle darkmode

Adds a button to enable or disable global dark mode. Manual configuration is required since the default colors are still black text on white background.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Adds a button to enable dark mode",
  "author": "MrOtherGuy",
  "manifest_version": 2,
  "name": "Toggle darkmode",
  "permissions": [
    "browserSettings"
  ],
  "version": "0.2resigned1",
  "background": {
    "scripts": [
      "background-script.js"
    ]
  },
  "browser_action": {
    "default_title": "Toggle Darkmode",
    "browser_style": true
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "61.0"
    }
  }
}