5.3.1
This commit is contained in:
parent
0c3f075fca
commit
733456884f
@ -10,6 +10,8 @@ if(document instanceof HTMLDocument)
|
|||||||
bypassed=true
|
bypassed=true
|
||||||
navigated=true
|
navigated=true
|
||||||
debugger//Don't want to navigate away just yet when dev tools are open
|
debugger//Don't want to navigate away just yet when dev tools are open
|
||||||
|
if(!new URL(target).hash)
|
||||||
|
target+=location.hash
|
||||||
window.onbeforeunload=null
|
window.onbeforeunload=null
|
||||||
location.href=target
|
location.href=target
|
||||||
}
|
}
|
||||||
@ -552,7 +554,14 @@ if(document instanceof HTMLDocument)
|
|||||||
})
|
})
|
||||||
if(bypassed)
|
if(bypassed)
|
||||||
return
|
return
|
||||||
if(typeof appurl!="undefined"&&typeof token!="undefined")//GemPixel Premium URL Shortener
|
//Adf.ly Pre-Redirect Nonsense
|
||||||
|
if(location.pathname.substr(0,13)=="/redirecting/"&&document.querySelector("p[style]").textContent=="For your safety, never enter your password unless you're on the real Adf.ly site."&&document.querySelector("a"))
|
||||||
|
{
|
||||||
|
safelyNavigate(document.querySelector("a").href)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
//GemPixel Premium URL Shortener
|
||||||
|
if(typeof appurl!="undefined"&&typeof token!="undefined")
|
||||||
{
|
{
|
||||||
//For this bypass to work, we detect a certain inline script and we might have to modify and execute (eval) it. Please note that eval is needed for this to work.
|
//For this bypass to work, we detect a certain inline script and we might have to modify and execute (eval) it. Please note that eval is needed for this to work.
|
||||||
let scripts=document.getElementsByTagName("script")
|
let scripts=document.getElementsByTagName("script")
|
||||||
@ -593,6 +602,7 @@ if(document instanceof HTMLDocument)
|
|||||||
{
|
{
|
||||||
showNotification(msgs.timerSkip)
|
showNotification(msgs.timerSkip)
|
||||||
safelyNavigate(cont.trim().substr(104).split('",e=0,f=a(".count-timer"),g=f.attr("data-timer"),h=setInterval(')[0])
|
safelyNavigate(cont.trim().substr(104).split('",e=0,f=a(".count-timer"),g=f.attr("data-timer"),h=setInterval(')[0])
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -600,6 +610,7 @@ if(document instanceof HTMLDocument)
|
|||||||
{
|
{
|
||||||
document.getElementById("messa").className+=" hidden"
|
document.getElementById("messa").className+=" hidden"
|
||||||
document.getElementById("html_element").className=document.getElementById("html_element").className.split("hidden").join("").trim()
|
document.getElementById("html_element").className=document.getElementById("html_element").className.split("hidden").join("").trim()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Soralink Plugin
|
//Soralink Plugin
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
"name": "Universal Bypass",
|
"name": "Universal Bypass",
|
||||||
"description": "__MSG_appDesc__",
|
"description": "__MSG_appDesc__",
|
||||||
"homepage_url": "https://universal-bypass.org/",
|
"homepage_url": "https://universal-bypass.org/",
|
||||||
"version": "5.3",
|
"version": "5.3.1",
|
||||||
"author": "timmyRS",
|
"author": "timmyRS",
|
||||||
"minimum_chrome_version": "41",
|
"minimum_chrome_version": "41",
|
||||||
"options_ui": {
|
"options_ui": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user