Bible Gateway Dark Mode

Bible Gateway Dark Mode

Creates a dark mode for biblegateway.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_title": "BibleGateway color settings"
  },
  "description": "Creates a dark mode for biblegateway.com",
  "manifest_version": 2,
  "name": "Bible Gateway Darkmode",
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "version": "0.5",
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "js": [
        "darkmode.js"
      ],
      "matches": [
        "https://www.biblegateway.com/*"
      ]
    }
  ]
}