Chrome extension for removing tracking such as fbclid
and utm_source
.
- Clone the repo to wherever-you-like
- Navigate to
chrome://extensions
on Chromium. - Load unpacked
- This plugin leverages the
chrome.webRequest.onBeforeRequest
API to inspect all request URLs. - If tracking parameter (such as
fbclid
) found in the URL parameters, it immediately issues a redirection to the same URL without the parameters. - Since
chrome.webRequest.onBeforeRequest
is monitoring on the callee URL, this extension requires the permission with<all_url>
.
chromium --auto-open-devtools-for-tabs
is really handy. :D- Use
prettier --tab-width 4 -w *.{js,json}
to format files.