Bookmarks (Bookmarklets)

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.

Install (Desktop)

  1. Show your browser bookmarks bar.
  2. Drag one of the buttons to that bar.
  3. Click it on any page you want to clean.
iOS/iPadOS: bookmarklets can be unreliable. Use the Shortcut flow there.

Bookmarklets

Show code (if drag & drop is blocked)

Clean + Copy (Code)

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);}})();

Open App (Code)

javascript:(()=>{const target='https://safesharepro.com/en/app/?url='+encodeURIComponent(location.href);location.href=target;})();