Easy Privacy

Easy Privacy

Easy Privacy extension provides privacy protection by blocking ads, third-party trackers, and automatically enabling cookie.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0",
  "default_locale": "en",
  "name": "__MSG_appTitle__",
  "description": "__MSG_appDesc__",
  "background": {
    "service_worker": "background/background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "icon 32.png"
  },
  "icons": {
    "16": "icon 16.png",
    "32": "icon 32.png",
    "64": "icon 64.png",
    "128": "icon 128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "cookies",
    "storage",
    "notifications"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "cookies_rules",
        "enabled": true,
        "path": "cookies_rules.json"
      },
      {
        "id": "adBlocker_rules1",
        "enabled": true,
        "path": "adBlocker_rules1.json"
      },
      {
        "id": "adBlocker_rules2",
        "enabled": true,
        "path": "adBlocker_rules2.json"
      },
      {
        "id": "privacy_rules",
        "enabled": true,
        "path": "privacy_rules.json"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}