Protect Me Online

Protect Me Online

an online browsing protection tool

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_popup": "html/popup.html",
    "default_title": "Protection"
  },
  "icons": {
    "32": "images/icon-32.png",
    "128": "images/icon-128.png"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "permissions": [
    "storage",
    "tabs",
    "idle",
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    "images/icon-32.png",
    "images/icon-128.png",
    "css/content.css"
  ],
  "content_scripts": [
    {
      "exclude_globs": [
        "*://mail*",
        "*://onlinebanking*"
      ],
      "exclude_matches": [
        "*://*.facebook.com/*",
        "*://gmail.com/*",
        "*://mail.google.com/*",
        "*://*.paypal.com/*",
        "*://youtube.com/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "name": "Protect Me Online",
  "version": "0.0.3",
  "description": "an online browsing protection tool"
}