A userscript that bypasses age verification on Spankbang, which sometimes requires you to submit your real ID.
Unlike traditional methods of removing page elements, such as those attempted by other users, this userscript modifies cookies to change your country to one where the verification isn't required.
Scriptlet for browsers that don't support userscripts.
javascript:(function(){'use strict';const e=new Date();e.setFullYear(e.getFullYear()+1);const o=(o,t,c,n,a,i)=>{document.cookie=`${o}=${t};${c?`expires=${c.toUTCString()};`:%27%27}${n?`path=${n};`:%27%27}${a?`domain=${a};`:%27%27}${i?%27secure;%27:%27%27}`};const t=window.location.hostname;/spankbang\.party/.test(t)&&["spankbang.party",".spankbang.party"].forEach(n=>{o("media_layout","four-col",e,"/",n,!1),o("coc","US",e,"/",n,!1),o("cor","NV",e,"/",n,!1),o("coe","us",e,"/",n,!1)}),/spankbang\.com/.test(t)&&["spankbang.com",".spankbang.com"].forEach(n=>{o("media_layout","four-col",e,"/",n,!1),o("coc","US",e,"/",n,!1),o("cor","NV",e,"/",n,!1),o("coe","us",e,"/",n,!1)}),location.reload();})(); // Credits: Cat-Ling - https://greasyfork.org/en/scripts/529878