mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-15 15:33:48 +05:00
minor fix for ovagames
This commit is contained in:
parent
a4b51b05a0
commit
0a2cbc5428
3 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.4.10
|
// @version 93.4.11
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.4.10
|
// @version 93.4.11
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -1885,7 +1885,7 @@
|
||||||
redirect(atob(urlParam)); //case for ovagames.com
|
redirect(atob(urlParam)); //case for ovagames.com
|
||||||
}
|
}
|
||||||
if (/linkspy.cc\/\/a/.test(url) && url.includes('aHR0')) {
|
if (/linkspy.cc\/\/a/.test(url) && url.includes('aHR0')) {
|
||||||
const decodedUrl = atob(url.split('_')[1]);
|
const decodedUrl = atob('aHR0' + url.split('aHR0')[1]);
|
||||||
const urlParam = getParam(decodedUrl,'url');
|
const urlParam = getParam(decodedUrl,'url');
|
||||||
if (!urlParam) redirect(decodedUrl); //default case
|
if (!urlParam) redirect(decodedUrl); //default case
|
||||||
redirect(urlParam); //case for dramaday.me
|
redirect(urlParam); //case for dramaday.me
|
||||||
|
|
|
@ -445,7 +445,7 @@
|
||||||
redirect(atob(urlParam)); //case for ovagames.com
|
redirect(atob(urlParam)); //case for ovagames.com
|
||||||
}
|
}
|
||||||
if (/linkspy.cc\/\/a/.test(url) && url.includes('aHR0')) {
|
if (/linkspy.cc\/\/a/.test(url) && url.includes('aHR0')) {
|
||||||
const decodedUrl = atob(url.split('_')[1]);
|
const decodedUrl = atob('aHR0' + url.split('aHR0')[1]);
|
||||||
const urlParam = getParam(decodedUrl,'url');
|
const urlParam = getParam(decodedUrl,'url');
|
||||||
if (!urlParam) redirect(decodedUrl); //default case
|
if (!urlParam) redirect(decodedUrl); //default case
|
||||||
redirect(urlParam); //case for dramaday.me
|
redirect(urlParam); //case for dramaday.me
|
||||||
|
|
Loading…
Reference in a new issue