Search Params Remover

Search Params Remover

a browser extension helps you surf without utm_source and fbclid

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Search Params Remover",
  "version": "0.2.3",
  "description": "a browser extension helps you surf without utm_source and fbclid",
  "author": "kong0107",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ],
  "options_page": "options.html"
}