Invert Image color

Invert Image color

The add-on inverts color of an image or color of any part of a page. Changes white color to black, for comfortable night time reading. Click on element second time to toggle inversion.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Invert Image",
  "version": "3.0",
  "description": "Inverts color of an image/(any part of a page) to black for night time reading",
  "homepage_url": "https://github.com/vycb/InvertImage",
  "icons": {
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "main.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "contextMenus",
    "activeTab"
  ]
}