Tracking Token Stripper
Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.
什么是Tracking Token Stripper?
Tracking Token Stripper是由Jon Parise开发的Chrome扩展程序,该扩展的主要功能是“Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.”。
扩展截图
下载Tracking Token Stripper扩展crx文件
下载Tracking Token Stripper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
FeedBurner and similar links often include Google Analytics tracking tokens in the URL's query string. These start with the prefix "utm_" (Urchin Tracking Monitor). Facebook and Google also add click tracking identifiers to outbound URLs ("fblid" and "gclid"). They are used by the target site to report back statistics regarding the origin of the inbound link. This extension removes these tokens from the URL before the destination site is visited, resulting in a more private browsing experience with a cleaner URL that's more suitable for copying into an email, instant message, etc.
扩展基本信息
名称 | Tracking Token Stripper |
ID | kcpnkledgcbobhkgimpbmejgockkplob |
官方URL | https://chromewebstore.google.com/detail/tracking-token-stripper/kcpnkledgcbobhkgimpbmejgockkplob |
简介 | Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings. |
文件大小 | 37.58 KB |
安装次数 | 12,605 |
当前版本 | 2.10 |
更新时间 | 2023-11-28 |
上架时间 | 2020-06-26 |
评分 | 4.04/5 共69次评分 |
开发者 | Jon Parise |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jparise/chrome-utm-stripper |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tracking Token Stripper", "version": "2.10", "manifest_version": 2, "author": "Jon Parise", "description": "Removes Google Analytics (UTM) parameters, and various other click tracking tokens, from URL query strings.", "homepage_url": "https:\/\/github.com\/jparise\/chrome-utm-stripper", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/*\/*?*", "http:\/\/*\/*?*" ] } |