utm_medium bye bye~

utm_medium bye bye~

Removes tracking tags from URLs such as utm_source, utm_medium and utm_campaign, using declarativeNetRequest only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "author": "Terry",
  "version": "0.1.2",
  "description": "__MSG_extDesc__",
  "manifest_version": 2,
  "default_locale": "en",
  "offline_enabled": true,
  "icons": {
    "24": "icon_24.png",
    "48": "icon_48.png",
    "96": "icon_96.png",
    "128": "icon_128.png"
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "myrules",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "<all_urls>",
    "declarativeNetRequest"
  ]
}