Identity Theft Preventer

Identity Theft Preventer

Identity Theft Preventer 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": "Identity Theft Preventer locates and blocks 3rd party online tracking systems and privacy invasion attempts at once.",
  "manifest_version": 3,
  "name": "Identity Theft Preventer",
  "homepage_url": "https://shieldapps.com/products/identity-theft-preventer/",
  "author": "ShieldApps",
  "version": "3.9.3",
  "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://*/*"
  ],
  "action": {
    "default_icon": "Resources/icon48.png",
    "default_title": "Identity Theft Preventer",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "src/*",
        "resources/*",
        "src/fingerprintScript.js",
        "src/pluginPrivacy.js",
        "src/audio.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "worker.js"
  }
}