mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 16:33:02 +05:00
added 3rd party bypass for ad-maven links (free-content.pro)
This commit is contained in:
parent
37e4b9104e
commit
0ce5a65075
4 changed files with 57 additions and 2 deletions
|
@ -3,7 +3,7 @@
|
|||
// @namespace Violentmonkey Scripts
|
||||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @version 91.3
|
||||
// @version 91.3.1
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -644,6 +644,8 @@
|
|||
// @match *://*.playstore.pw/*
|
||||
// @match *://*.sigmalinks.in/*
|
||||
// @match *://*.r1.foxylinks.site/*
|
||||
// @include /(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/
|
||||
// @include /adbypass.eu/
|
||||
// @include /mundopolo.net/
|
||||
// @include /comohoy.com/
|
||||
// @include /sphinxanime.com\/short/
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
// @namespace Violentmonkey Scripts
|
||||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @version 91.3
|
||||
// @version 91.3.1
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -644,6 +644,8 @@
|
|||
// @match *://*.playstore.pw/*
|
||||
// @match *://*.sigmalinks.in/*
|
||||
// @match *://*.r1.foxylinks.site/*
|
||||
// @include /(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/
|
||||
// @include /adbypass.eu/
|
||||
// @include /mundopolo.net/
|
||||
// @include /comohoy.com/
|
||||
// @include /sphinxanime.com\/short/
|
||||
|
@ -1735,6 +1737,26 @@
|
|||
|
||||
}})();
|
||||
|
||||
// ----- Bypass ad-maven link shorteners -----
|
||||
(function() {
|
||||
'use strict';
|
||||
var url = window.location.href;
|
||||
if (/(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/.test(url)) {
|
||||
GM_setValue('savedShortlink', url);
|
||||
window.location.assign('https://adbypass.eu/');
|
||||
} else if (/adbypass.eu/.test(url)) {
|
||||
window.addEventListener("load", function(event) {
|
||||
var savedShortlink = GM_getValue('savedShortlink', null);
|
||||
var inputField = document.querySelector('#inputt');
|
||||
if (savedShortlink && inputField) {
|
||||
inputField.value = savedShortlink;
|
||||
GM_deleteValue('savedShortlink');
|
||||
}
|
||||
});
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
// ----- Extra bypasses -----
|
||||
(function() {
|
||||
'use strict';
|
||||
|
|
29
extra_bypasses/ad-maven.user.js
Normal file
29
extra_bypasses/ad-maven.user.js
Normal file
|
@ -0,0 +1,29 @@
|
|||
// ==UserScript==
|
||||
// @name Ad-maven 3rd party bypass
|
||||
// @description These bypasses are always merged into Bypass_All_Shortlinks.user.js
|
||||
// @include /(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/
|
||||
// @include /adbypass.eu/
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
// ----- Bypass ad-maven link shorteners -----
|
||||
(function() {
|
||||
'use strict';
|
||||
var url = window.location.href;
|
||||
if (/(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/.test(url)) {
|
||||
GM_setValue('savedShortlink', url);
|
||||
window.location.assign('https://adbypass.eu/');
|
||||
} else if (/adbypass.eu/.test(url)) {
|
||||
window.addEventListener("load", function(event) {
|
||||
var savedShortlink = GM_getValue('savedShortlink', null);
|
||||
var inputField = document.querySelector('#inputt');
|
||||
if (savedShortlink && inputField) {
|
||||
inputField.value = savedShortlink;
|
||||
GM_deleteValue('savedShortlink');
|
||||
}
|
||||
});
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
|
@ -629,6 +629,8 @@ bestlink.pro
|
|||
playstore.pw
|
||||
sigmalinks.in
|
||||
r1.foxylinks.site
|
||||
/(free-content.pro|((ebaticalfel|downbadleaks|megadropsz|megadumpz|stownrusis|iedprivatedqu).com))\/s\?/
|
||||
/adbypass.eu/
|
||||
/mundopolo.net/
|
||||
/comohoy.com/
|
||||
/sphinxanime.com\/short/
|
||||
|
|
Loading…
Reference in a new issue