mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-30 22:57:26 +05:00
fixed stfly autocliks
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/62 thanks to mouro for the latest fix
This commit is contained in:
parent
b277ba919e
commit
5987972f45
4 changed files with 24 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.2.12
|
||||
// @version 92.2.13
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -794,6 +794,7 @@
|
|||
// @include /ikramlar.online/
|
||||
// @include /mh.gourlpro.com/
|
||||
// @include /playpastelinks.com/
|
||||
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
// @include /mega-enlace.com/
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.2.12
|
||||
// @version 92.2.13
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -794,6 +794,7 @@
|
|||
// @include /ikramlar.online/
|
||||
// @include /mh.gourlpro.com/
|
||||
// @include /playpastelinks.com/
|
||||
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
// @include /mega-enlace.com/
|
||||
|
@ -2408,6 +2409,15 @@
|
|||
/fitnessholic.net/.test(url) ? afterDOMLoaded(function() {redirect("https://exercise.fitnessholic.net/?go=" + document.querySelector('div[id="btn11"]').querySelector('input[name="newwpsafelink"]').value)}) : null; //redudancy needed for chrome
|
||||
/readytechflip.com/.test(url) ? clickIfVisible('#tp-snp2') : null;
|
||||
|
||||
// stfly - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/62
|
||||
if (/stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/.test(url)) {
|
||||
const buttonTexts = ["Click here to proceed", "Start", "Begin", "Open", "Click here to start", "Verification", "Get Link", "Click here to verify", "Verify"];
|
||||
window.addEventListener('load', function() {setTimeout(function() {
|
||||
const buttons = document.querySelectorAll('button, input[type="button"], input[type="submit"]');
|
||||
buttons.forEach(function(button) {if (buttonTexts.includes(button.textContent.trim())) {button.click();}});
|
||||
}, 6000);});
|
||||
}
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -156,6 +156,7 @@
|
|||
// @include /ikramlar.online/
|
||||
// @include /mh.gourlpro.com/
|
||||
// @include /playpastelinks.com/
|
||||
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -725,6 +726,15 @@
|
|||
/fitnessholic.net/.test(url) ? afterDOMLoaded(function() {redirect("https://exercise.fitnessholic.net/?go=" + document.querySelector('div[id="btn11"]').querySelector('input[name="newwpsafelink"]').value)}) : null; //redudancy needed for chrome
|
||||
/readytechflip.com/.test(url) ? clickIfVisible('#tp-snp2') : null;
|
||||
|
||||
// stfly - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/62
|
||||
if (/stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/.test(url)) {
|
||||
const buttonTexts = ["Click here to proceed", "Start", "Begin", "Open", "Click here to start", "Verification", "Get Link", "Click here to verify", "Verify"];
|
||||
window.addEventListener('load', function() {setTimeout(function() {
|
||||
const buttons = document.querySelectorAll('button, input[type="button"], input[type="submit"]');
|
||||
buttons.forEach(function(button) {if (buttonTexts.includes(button.textContent.trim())) {button.click();}});
|
||||
}, 6000);});
|
||||
}
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -774,6 +774,7 @@ https://paster.so/*
|
|||
/ikramlar.online/
|
||||
/mh.gourlpro.com/
|
||||
/playpastelinks.com/
|
||||
/stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
|
||||
/filecrypt.(cc|co)/
|
||||
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
|
||||
/mega-enlace.com/
|
||||
|
|
Loading…
Reference in a new issue