AI 产品解读Removes tracking query parameters (fbclid, utm_*, ref_*, gclid, etc.) from URLs to improve privacy and create cleaner URLs.
Tracking parameters added by ads and referral links can expose user browsing data to third parties and make URLs messy. This extension strips those parameters automatically.
1. User installs the extension. 2. On install, background.js adds declarativeNetRequest rules to allow certain domains to bypass stripping. 3. For every navigation request, queryParamsRemover.js intercepts the URL, checks if the domain is excluded, and if not, removes tracking query parameters. 4. The cleaned URL is used for the request instead of the original.
Removes fbclid, utm_*, ref_*, gclid, and other tracking query params from URLsExcludes certain domains (booking.com, airline sites, linkedin.com, etc.) from stripping to avoid breaking functionalityUses declarativeNetRequest for rule-based URL rewriting and webRequest.onBeforeRequest for JavaScript-based strippingSupports both MV3 (Chrome) and MV2 (Firefox via browser.* API)
- 目标用户
- Privacy-conscious users who want to avoid ad tracking via URL parameters / Users who prefer clean URLs without tracking clutter
- The extension uses two mechanisms (declarativeNetRequest in rules_1.json and webRequest in queryParamsRemover.js) which may have overlapping or conflicting behavior. The webRequest approach runs in a content script context (likely injected), while declarativeNetRequest runs in the background. Both achieve similar URL rewriting but through different APIs. This dual approach was not fully analyzed for potential edge cases.
付费分析未识别到付费功能
The extension is entirely free with no paid features, no subscription gating, no payment platform integration, and no upgrade prompts. The 'pro' keyword hit was a false positive from a hash string in _metadata/verified_contents.json.
- 置信度
- 100
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension is a local URL-rewriting tool using declarativeNetRequest and webRequest APIs. It requires no account, no login UI, and no connection to any external service for authentication. The user can install and use it immediately on any Chrome profile.
This is the only fbclid remover that seems to currently work. Thanks Mihael!