the home site for me: also iteration 3 or 4 of my site
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 14 lines 660 B view raw
1// static/js/nativeads.js 2 3function hideAdNote() { 4 document.getElementById("ad-note").id = 'ad-note-hidden'; 5 document.getElementById("ad-note-content-wrapper").innerHTML = ""; 6 document.cookie = "notice-shown=true;path=/"; 7} 8 9if (!document.cookie.includes("notice-shown")) { 10 document.getElementById("ad-note-hidden").id = 'ad-note'; 11 document.getElementById("ad-note-content-wrapper").innerHTML = "No adblocker detected. " + 12 "Consider using an extension like <a href=https://github.com/uBlockOrigin/uBOL-home/blob/main/README.md>uBlock Origin</a> to save time and bandwidth." + 13 " <u onclick=hideAdNote()>Click here to close.</u>"; 14}