NightMode

NightMode

Invert Website Colors for Night Viewing

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": "nightmode-128.png",
    "default_popup": "popup.html",
    "default_title": "NightMode (Shift+F11)"
  },
  "commands": {
    "command_toggle_global": {
      "description": "Toggle NightMode ON/OFF"
    },
    "command_toggle_site": {
      "description": "Toggle Inversion on a Site"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "nightmode.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "description": "Invert Website Colors for Night Viewing",
  "icons": {
    "128": "nightmode-128.png"
  },
  "name": "NightMode",
  "manifest_version": 2,
  "options_page": "options.html",
  "permissions": [
    "<all_urls>",
    "tabs"
  ],
  "web_accessible_resources": [
    "nightmode.css"
  ],
  "version": "1.0.0",
  "short_name": "NightMode",
  "author": "Northern Signal"
}