Night Mode Pro

Night Mode Pro

Switch to night mode and the display is much easier on your eyes!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "0.3.4",
  "manifest_version": 2,
  "offline_enabled": true,
  "name": "Night Mode Pro",
  "short_name": "night-mode",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "background": {
    "page": "lib/chrome/background.html"
  },
  "web_accessible_resources": [
    "data/content_script/*"
  ],
  "homepage_url": "https://mybrowseraddon.com/night-mode.html",
  "description": "Switch to night mode and the display is much easier on your eyes!",
  "options_ui": {
    "open_in_tab": true,
    "chrome_style": true,
    "page": "data/options/options.html"
  },
  "browser_action": {
    "default_title": "Night Mode Pro",
    "default_popup": "data/popup/popup.html",
    "default_icon": {
      "16": "data/icons/16.png",
      "32": "data/icons/32.png",
      "48": "data/icons/48.png",
      "64": "data/icons/64.png"
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "data/message_passing.js",
        "data/content_script/inject.js"
      ]
    }
  ],
  "commands": {
    "toggle-night-mode": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle Night Mode (ON / OFF)"
    },
    "add-to-whitelist": {
      "suggested_key": {
        "default": "Ctrl+Shift+U",
        "mac": "Command+Shift+U"
      },
      "description": "Add Active Tab to Whitelist"
    },
    "remove-from-whitelist": {
      "suggested_key": {
        "default": "Ctrl+Shift+F",
        "mac": "Command+Shift+F"
      },
      "description": "Remove Active Tab from Whitelist"
    }
  },
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png"
  }
}