Cyber Privacy Suite Lite version

Cyber Privacy Suite Lite version

Cyber Privacy Suite Lite 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


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Cyber Privacy Suite Lite locates and blocks 3rd party online tracking systems and privacy invasion attempts at once.",
  "manifest_version": 3,
  "name": "Cyber Privacy Suite Lite version",
  "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",
    "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"
  }
}