I
Thread Author
itskvo
Guest
Cloaq Link Anonymizer

Cloaq lets you surf anonymously, hide referrers, and protect your online privacy. Link to sites without revealing your identity — all for free.
Tip: Manually prepend
https://briceka.com/bypasso/cloaq?
before any link.
Cloaq Auto-Link Script

Automatically rewrite all external links through Cloaq with a single script.
Step 1: Add This Script

Place this inside your site’s
<head>
or before the </body>
tag:
Code:
<script> document.addEventListener('DOMContentLoaded',()=>{
const c='https://briceka.com/bypasso/cloaq/?';
const d=location.hostname;
document.querySelectorAll('a').forEach(a=>{
const h=a.href;
if(!h||h.startsWith('#')||h.startsWith('javascript:')||a.dataset.cloaqExempt)return;
const t=document.createElement('a');
t.href=h;
if(t.hostname&&t.hostname!==d&&!h.startsWith(c)){
a.href=c+encodeURIComponent(h);
if(a.target==='_blank')a.rel='noopener noreferrer';
}
});
}); </script>
Continue reading...