LuminateMe Proxy On Alerter

LuminateMe Proxy On Alerter

Alert if you are on proxy too long

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LuminateMe Proxy On Alerter",
  "short_name": "LuminateMe",
  "version": "1.6",
  "description": "Alert if you are on proxy too long",
  "background": {
    "scripts": [
      "src/scripts/background.js"
    ],
    "persistent": true
  },
  "page_action": {
    "default_popup": "src/popup.html",
    "default_icon": {
      "16": "src/images/p16.png",
      "32": "src/images/p32.png",
      "48": "src/images/p48.png",
      "128": "src/images/p128.png"
    }
  },
  "icons": {
    "16": "src/images/p16.png",
    "32": "src/images/p32.png",
    "48": "src/images/p48.png",
    "128": "src/images/p128.png"
  },
  "options_page": "src/options.html",
  "manifest_version": 2,
  "offline_enabled": false,
  "content_security_policy": "script-src 'self' https://pinchoo.com; object-src 'self'",
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "chrome://favicon/",
    "storage",
    "declarativeContent",
    "http://pinchoo.com/services/gmi",
    "notifications",
    "idle",
    "management"
  ],
  "web_accessible_resources": [
    "src/images/p.png"
  ]
}