Remove FBclid and UTM

Removes fbclid, gclid, and utm query parameters from URLs before they load. Simple add-on, no config, bare minimum permissions required.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Remove FBclid and UTM",
  "version": "1.2",
  "description": "Removes fbclid, ysclid, gclid, and utm_ query parameters in URLs.",
  "icons": {
    "48": "icons/noFbclidUtmIcon.png"
  },
  "background": {
    "scripts": [
      "queryParamsRemover.js"
    ]
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "browser_specific_settings": {
    "gecko": {
      "id": "{2e0d105e-caa5-447c-89d5-33f4efc39ef1}"
    }
  }
}