Neat, I remove all POST strings as a habit; I probably mistakenly assume most intermediate skill users would also. Using a webpage to do so would be helpful for more complicated links where the url POST data includes the content ID in one of the strings
I would imagine what you have would be far more useful to HN folks if you add some type of attribution system - meaning parse the URL, identity the tracking strings, and then tell the user what each string one does.
Then let the use check a radio box to re-appeand the desired tracking string to the url(. Maybe add the option to edit the string?
You’re right that for many HN folks the interesting part is not just “make the URL shorter”, but understanding what is being removed and being able to keep / edit specific bits. Right now SafeShare is deliberately “dumb & small”: it only sees the URL string in the address bar and strips parameters that match a simple list/heuristic (UTM, gclid, fbclid, some obvious redirect params etc.). It doesn’t look at the request method – so it’s really working on query strings, not HTTP POST bodies.
I like your idea of an attribution / explanation layer, e.g.:
• parse the URL and list detected tracking params,
• show a short label for each (utm_source → source, campaign attribution, etc.),
• let the user tick which ones to keep/remove, maybe even edit values,
• then regenerate the final URL.
That would probably live as an “advanced” or “details” view so that the default flow stays as simple as: paste → clean → copy/open.
I’ll experiment with a prototype of that – even just a “show what was removed and why” panel would already be a useful first step. Thanks again for pushing me in that direction.
I would imagine what you have would be far more useful to HN folks if you add some type of attribution system - meaning parse the URL, identity the tracking strings, and then tell the user what each string one does.
Then let the use check a radio box to re-appeand the desired tracking string to the url(. Maybe add the option to edit the string?