Bitdefender Anti-tracker

Protects your privacy by blocking trackers that collect different type of data everytime you navigate online.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "version": "1.5.0.38",
  "name": "Bitdefender Anti-tracker",
  "short_name": "Anti-tracker",
  "description": "__MSG_app_desc__",
  "default_locale": "en",
  "icons": {
    "128": "assets/bdlogo.png"
  },
  "action": {
    "default_icon": "assets/bdlogo.png",
    "default_title": "__MSG_app_name__",
    "default_popup": "home.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "css": [
        "content_styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_locales/*.*/messages.json",
        "tracking/trackers.json"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "permissions": [
    "tabs",
    "webNavigation",
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage",
    "nativeMessaging",
    "scripting"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "advertising",
        "enabled": true,
        "path": "tracking/dnr/advertising.json"
      },
      {
        "id": "analytics",
        "enabled": true,
        "path": "tracking/dnr/analytics.json"
      },
      {
        "id": "customer_interaction",
        "enabled": true,
        "path": "tracking/dnr/customer_interaction.json"
      },
      {
        "id": "social_media",
        "enabled": true,
        "path": "tracking/dnr/social_media.json"
      },
      {
        "id": "essential",
        "enabled": true,
        "path": "tracking/dnr/essential.json"
      },
      {
        "id": "domain_cookies",
        "enabled": true,
        "path": "tracking/dnr/domain_cookies.json"
      },
      {
        "id": "exceptions",
        "enabled": true,
        "path": "tracking/dnr/exceptions.json"
      },
      {
        "id": "special_offers",
        "enabled": true,
        "path": "tracking/dnr/special_offers.json"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}