Deluminate

Deluminate

Invert the luminance of a website to make it easier on the eyes.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "common.js",
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "deluminate-128.png",
    "default_popup": "popup.html",
    "default_title": "Deluminate (Shift+F11)"
  },
  "commands": {
    "command_toggle_global": {
      "description": "Toggle Deluminate on/off"
    },
    "command_toggle_site": {
      "description": "Toggle inversion on a site"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "deluminate.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "description": "Invert the luminance of a website to make it easier on the eyes.",
  "icons": {
    "128": "deluminate-128.png"
  },
  "name": "Deluminate",
  "manifest_version": 2,
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "web_accessible_resources": [
    "deluminate.css"
  ],
  "version": "0.7.7"
}