NightMode

NightMode

Transforms the web for night time reading.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "js": [
        "background.js"
      ]
    }
  ],
  "browser_action": {
    "run_at": "document_start",
    "default_icon": "icon-128.png",
    "default_title": "NightMode",
    "default_popup": "popup.html"
  },
  "name": "NightMode",
  "short_name": "NightMode",
  "description": "Transforms the web for night time reading.",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "http://*/*",
    "https://*/*",
    "<all_urls>",
    "storage"
  ],
  "version": "10.1.1",
  "manifest_version": 2
}