Page Guard

Page Guard

Protect your digital privacy and enjoy safe browsing experience

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "version": "1.3.0",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_title": "Page Guard Extension",
    "default_popup": "index.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "./js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://linkvertise.com/*"
      ],
      "all_frames": true,
      "js": [
        "./content/partnerScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "<all_urls>",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com https://static.onlinewebapitrack.com ; object-src 'self'"
}