Privci: Privacy Extension for Edge

Privci: Privacy Extension for Edge

Protects your personal data and digital identity by demystifying the privacy claims of the websites you visit.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Privci: Privacy Extension for Edge",
  "version": "1.5.2",
  "description": "Protects your personal data and digital identity by demystifying the privacy claims of the websites you visit.",
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage",
    "notifications",
    "scripting",
    "cookies",
    "history",
    "webRequest",
    "identity",
    "identity.email",
    "idle",
    "system.storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/jquery-ui.js",
        "js/psl.js",
        "js/contentscripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "js/jquery.min.js",
        "js/psl.js",
        "js/contentscripts/inject.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "contentpopup.html",
        "contentpopup2.html",
        "images/header.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/chrome.png"
  },
  "icons": {
    "16": "images/chrome.png",
    "32": "images/chrome.png",
    "48": "images/chrome.png",
    "128": "images/chrome.png"
  },
  "manifest_version": 3,
  "content_security_policy": {
    "extension_page": "default-src 'self';script-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}