Cyber Privacy Suite

Cyber Privacy Suite

Cyber Privacy Suite locates and blocks 3rd party online tracking systems and privacy invasion attempts at once.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Cyber Privacy Suite locates and blocks 3rd party online tracking systems and privacy invasion attempts at once.",
  "manifest_version": 3,
  "name": "Cyber Privacy Suite",
  "homepage_url": "https://shieldapps.com/products/cyber-privacy-suite/",
  "author": "ShieldApps",
  "version": "0.0.6",
  "action": {
    "default_icon": "Resources/icon48.png",
    "default_title": "Cyber Privacy Suite",
    "default_popup": "popup.html"
  },
  "icons": {
    "48": "Resources/icon48.png",
    "128": "Resources/icon128.png"
  },
  "permissions": [
    "privacy",
    "cookies",
    "storage",
    "scripting",
    "tabs",
    "webNavigation",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "webRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "FilterRules",
        "enabled": true,
        "path": "FilterRules.json"
      },
      {
        "id": "HardCodedRules",
        "enabled": true,
        "path": "HardCodedList.json"
      },
      {
        "id": "UserAgentFilter",
        "enabled": true,
        "path": "UserAgentFilter.json"
      }
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "src/pluginPrivacy.js",
        "src/fingerprintScript.js",
        "src/audio.js"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/*",
        "resources/*",
        "src/fingerprintScript.js",
        "src/pluginPrivacy.js",
        "src/audio.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}