DarkColors

DarkColors

Set dark colors in web pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "DarkColors",
  "description": "Set dark colors in web pages",
  "version": "1.1",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "name": "DarkColors",
    "default_icon": {
      "38": "images/icon38d.png"
    },
    "default_title": "Click to enable dark colors"
  },
  "background": {
    "scripts": [
      "js/utils.js",
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/utils.js",
        "js/script.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "homepage_url": "http://www.gureapps.x10host.com/darkcolors/",
  "permissions": [
    "notifications",
    "storage",
    "tabs",
    "webRequest",
    "<all_urls>"
  ],
  "short_name": "DarkColors"
}