Examine source code of DeepSeek Tracker Blocker: Privacy & Ad Protection

Inspect and view changes in DeepSeek Tracker Blocker: Privacy & Ad Protection source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DeepSeek Tracker Blocker: Privacy & Ad Protection",
  "version": "1.1",
  "description": "Block DeepSeek analytics, telemetry, and ads while preserving chat functionality",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "declarativeNetRequestFeedback"
  ],
  "host_permissions": [
    "*://*.deepseek.com/*",
    "*://*.volces.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.deepseek.com/*"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "32": "icons/icon32.png"
    },
    "default_title": "DeepSeek Tracker Blocker Active"
  },
  "homepage_url": "https://www.buymeacoffee.com/akash_dk"
}