Links · cleaning and breakdownClean and inspect a link
Strip tracking tags — utm, fbclid, gclid, yclid — out of a link and see what it is made of. Everything runs in your browser: the link is never sent to a server.
The link is processed in your browser and never sent to a server
01
Cleaning and breakdown
paste a link — the result appears at onceLink
What to remove
Known trackers · always
Examples
Clean link
https://example.com/blog/post
Was 91 characters · now 29 · 62 shorter
Removed
utm_source=newslettersource, medium and campaign of the visit — useful to a marketer, not to the page
utm_medium=emailsource, medium and campaign of the visit — useful to a marketer, not to the page
utm_campaign=septembersource, medium and campaign of the visit — useful to a marketer, not to the page
02
About tracking tags
UTM tags
Analyticsutm_source=…
They mark the source, medium and campaign of a visit. Useful to the marketer who published the link, not to the page it points at — removing them has no consequences.
Click identifiers
Advertisingfbclid · gclid · yclid
A unique number for one ad click. Unlike a UTM tag it describes not a campaign but a particular visit — which ties it to you personally. This is the first thing to remove.
What stays
Carefullyid · q · page · sort
Functional parameters control what the page shows: page number, search query, record id. They are never touched — otherwise the link stops working and the person finds out on somebody else's site.
Return address
TrapSource=%2Fsites%2F…
In SharePoint forms the `Source` parameter holds the address to return to after saving. It looks like tracking, but removing it drops the person onto a default list instead of the page they came from.
Breaking it apart
What is insidescheme · host · path · ?
A link reads better in parts: scheme, subdomain, domain and zone, port, path, parameters and fragment. Values are shown decoded — `%20` becomes a space and non-Latin text becomes readable.
Shortened links
Limitationclck.ru/…
Expanding a short link is impossible here: it would mean following the link on a server and telling that service someone opened it. The tool only works with what you pasted.
03
Frequently asked questions
Updated