Night Reader

Night Reader

Reading comfortably with inverted brightness but preserved hue

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Night Reader",
  "description": "Reading comfortably with inverted brightness but preserved hue",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png",
    "256": "icons/icon-256.png"
  },
  "version": "1.7.41",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "ftp://*/*",
        "file://*"
      ],
      "js": [
        "autotoggle.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": []
  },
  "browser_action": {
    "default_icon": "icons/icon-256.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "http://*/*",
    "https://*/*",
    "ftp://*/*",
    "file://*"
  ]
}