PleaseDontBugMe
New Member
Everyone complaining about Universal Bypass not working on LV links anymore, you can add this custom bypass to the ruleset.
Happy skipping!
Happy skipping!
JavaScript:
domainBypass(/linkvertise\.(com|net)|link-to\.net/, () => {
url="https://online-coding.eu/api/LinkvertiseBypass.php?url=" + location
safelyNavigate(url)
})
domainBypass(/online-coding\.eu/, () => {
if(location.pathname.includes("LinkvertiseBypass")) {
let xhr=new XMLHttpRequest()
xhr.onload=()=>{
safelyNavigate(xhr.responseText)
}
xhr.open("GET",location)
xhr.send()
}
})