Simple Night Mode for Quantum

Simple Night Mode for Quantum

Works on Mobile as well. An addon to invert the color of any webpage, making contents of any website readable and less stressful on your eyes. After installing addon, just click toggle button on toolbar to switch on/off night mode.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Simple Night Mode for Quantum",
  "version": "1.0.4resigned1",
  "description": "An addon to invert the color of any webpage/website, making contents of any website less stressful on your eyes.",
  "background": {
    "scripts": [
      "libs/control.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "libs/system.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/icon16.png",
    "24": "images/icon24.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon24.png",
      "38": "images/icon48.png"
    },
    "default_title": "Simple Night Mode"
  },
  "permissions": [
    "tabs",
    "*://*/*"
  ],
  "manifest_version": 2,
  "web_accessible_resources": [
    "themes/simple.css",
    "libs/system.js"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c1b085de-157e-4521-a06f-c39f5c698216}"
    }
  }
}