Clean + Copy
Cleans the current URL and copies it to clipboard.
Desktop: one click, cleaner link.
Drag a button to your bookmarks bar. Then clean the current page URL and copy it, or open SafeShare app with that URL prefilled.
Cleans the current URL and copies it to clipboard.
Opens SafeShare app with current URL passed in.
javascript:(()=>{const u=new URL(location.href);const DROP=new Set(['gclid','dclid','gbraid','wbraid','fbclid','msclkid','igshid','twclid','ttclid','li_fat_id','yclid','mc_cid','mc_eid','mkt_tok','_hsenc','_hsmi','srsltid','obclid','tblci','_ga','_gid','_gac','_fbp','_fbc']);const p=u.searchParams;[...p.keys()].forEach(k=>{const kl=k.toLowerCase();if(kl.startsWith('utm_')||DROP.has(kl))p.delete(k)});u.search=p.toString()?('?'+p.toString()):'';const out=u.toString();const done=()=>alert('SafeShare: link cleaned and copied');if(navigator.clipboard&&navigator.clipboard.writeText){navigator.clipboard.writeText(out).then(done,()=>prompt('Copy:',out));}else{prompt('Copy:',out);}})();
javascript:(()=>{const target='https://safesharepro.com/en/app/?url='+encodeURIComponent(location.href);location.href=target;})();