mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-30 22:57:26 +05:00
add autoclicks for upfiles
This commit is contained in:
parent
b43b72e45a
commit
c69f169bdb
4 changed files with 20 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.4.30
|
// @version 93.4.31
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -505,6 +505,7 @@
|
||||||
// @match *://*.ukrupdate.com/*
|
// @match *://*.ukrupdate.com/*
|
||||||
// @match *://*.aryx.xyz/*
|
// @match *://*.aryx.xyz/*
|
||||||
// @match *://teknoasian.com/*
|
// @match *://teknoasian.com/*
|
||||||
|
// @match *://upfiles.app/*
|
||||||
// @match https://paster.so/*
|
// @match https://paster.so/*
|
||||||
// @include /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
// @include /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
// @include /(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// @author Amm0ni4
|
// @author Amm0ni4
|
||||||
// @noframes
|
// @noframes
|
||||||
// @version 93.4.30
|
// @version 93.4.31
|
||||||
// @grant GM_setValue
|
// @grant GM_setValue
|
||||||
// @grant GM_getValue
|
// @grant GM_getValue
|
||||||
// @grant GM_addStyle
|
// @grant GM_addStyle
|
||||||
|
@ -505,6 +505,7 @@
|
||||||
// @match *://*.ukrupdate.com/*
|
// @match *://*.ukrupdate.com/*
|
||||||
// @match *://*.aryx.xyz/*
|
// @match *://*.aryx.xyz/*
|
||||||
// @match *://teknoasian.com/*
|
// @match *://teknoasian.com/*
|
||||||
|
// @match *://upfiles.app/*
|
||||||
// @match https://paster.so/*
|
// @match https://paster.so/*
|
||||||
// @include /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
// @include /^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
// @include /(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
// @include /(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
||||||
|
@ -2677,6 +2678,13 @@
|
||||||
clickWithDelay('.myButton', 4000);
|
clickWithDelay('.myButton', 4000);
|
||||||
}) : null;
|
}) : null;
|
||||||
|
|
||||||
|
// upfiles.app
|
||||||
|
/upfiles.app\/[^\/]+/.test(url) ? afterDOMLoaded(function() {
|
||||||
|
clickIfCorrectText('#link-button', 'Continue');
|
||||||
|
clickIfRecaptchaSolved('#link-button');
|
||||||
|
redirectIfNotDisabled('a#link-button');
|
||||||
|
}) : null;
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
|
@ -213,6 +213,7 @@
|
||||||
// @include /freemodsapp.in/
|
// @include /freemodsapp.in/
|
||||||
// @include /pandaznetwork.com/
|
// @include /pandaznetwork.com/
|
||||||
// @match *://teknoasian.com/*
|
// @match *://teknoasian.com/*
|
||||||
|
// @match *://upfiles.app/*
|
||||||
// @run-at document-start
|
// @run-at document-start
|
||||||
// ==/UserScript==
|
// ==/UserScript==
|
||||||
|
|
||||||
|
@ -1237,6 +1238,13 @@
|
||||||
clickWithDelay('.myButton', 4000);
|
clickWithDelay('.myButton', 4000);
|
||||||
}) : null;
|
}) : null;
|
||||||
|
|
||||||
|
// upfiles.app
|
||||||
|
/upfiles.app\/[^\/]+/.test(url) ? afterDOMLoaded(function() {
|
||||||
|
clickIfCorrectText('#link-button', 'Continue');
|
||||||
|
clickIfRecaptchaSolved('#link-button');
|
||||||
|
redirectIfNotDisabled('a#link-button');
|
||||||
|
}) : null;
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
||||||
(function() {
|
(function() {
|
||||||
|
|
|
@ -486,6 +486,7 @@ https://fc-lc.xyz/*
|
||||||
*://*.ukrupdate.com/*
|
*://*.ukrupdate.com/*
|
||||||
*://*.aryx.xyz/*
|
*://*.aryx.xyz/*
|
||||||
*://teknoasian.com/*
|
*://teknoasian.com/*
|
||||||
|
*://upfiles.app/*
|
||||||
https://paster.so/*
|
https://paster.so/*
|
||||||
/^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
/^(https?:\/\/)(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||||
/(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
/(mundopolo.net|myfirstdollar.net|adsense.tupaste.top|acorta2.com|web.admoneyclick.net|acortaphd.live|onlypc.net|link.manudatos.com)/
|
||||||
|
|
Loading…
Reference in a new issue