Reluminate

Reluminate

De-invert the luminance of entire pages or only images in Chrome for your already inverted screen.

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": "Reluminate-128.png",
    "default_popup": "popup.html",
    "default_title": "Reluminate (Shift+F11)"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "Reluminate.css"
      ],
      "js": [
        "Reluminate.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "De-invert the luminance of entire pages or only images in Chrome for your already inverted screen.",
  "icons": {
    "128": "Reluminate-128.png"
  },
  "name": "Reluminate",
  "manifest_version": 2,
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "version": "1.0"
}