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:
Amm0ni4 2024-06-26 22:28:25 +02:00
parent b277ba919e
commit 5987972f45
4 changed files with 24 additions and 2 deletions

View file

@ -4,7 +4,7 @@
// @run-at document-start // @run-at document-start
// @author Amm0ni4 // @author Amm0ni4
// @noframes // @noframes
// @version 92.2.12 // @version 92.2.13
// @grant GM_setValue // @grant GM_setValue
// @grant GM_getValue // @grant GM_getValue
// @grant GM_addStyle // @grant GM_addStyle
@ -794,6 +794,7 @@
// @include /ikramlar.online/ // @include /ikramlar.online/
// @include /mh.gourlpro.com/ // @include /mh.gourlpro.com/
// @include /playpastelinks.com/ // @include /playpastelinks.com/
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
// @include /filecrypt.(cc|co)/ // @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 /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
// @include /mega-enlace.com/ // @include /mega-enlace.com/

View file

@ -4,7 +4,7 @@
// @run-at document-start // @run-at document-start
// @author Amm0ni4 // @author Amm0ni4
// @noframes // @noframes
// @version 92.2.12 // @version 92.2.13
// @grant GM_setValue // @grant GM_setValue
// @grant GM_getValue // @grant GM_getValue
// @grant GM_addStyle // @grant GM_addStyle
@ -794,6 +794,7 @@
// @include /ikramlar.online/ // @include /ikramlar.online/
// @include /mh.gourlpro.com/ // @include /mh.gourlpro.com/
// @include /playpastelinks.com/ // @include /playpastelinks.com/
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
// @include /filecrypt.(cc|co)/ // @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 /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
// @include /mega-enlace.com/ // @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 /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; /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() { (function() {

View file

@ -156,6 +156,7 @@
// @include /ikramlar.online/ // @include /ikramlar.online/
// @include /mh.gourlpro.com/ // @include /mh.gourlpro.com/
// @include /playpastelinks.com/ // @include /playpastelinks.com/
// @include /stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
// @run-at document-start // @run-at document-start
// ==/UserScript== // ==/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 /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; /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() { (function() {

View file

@ -774,6 +774,7 @@ https://paster.so/*
/ikramlar.online/ /ikramlar.online/
/mh.gourlpro.com/ /mh.gourlpro.com/
/playpastelinks.com/ /playpastelinks.com/
/stfly.(cc|xyz|biz)|(techtrendmakers|gadnest|optimizepics).com|(blogbux|blogesque|exploreera|explorosity|torovalley).net/
/filecrypt.(cc|co)/ /filecrypt.(cc|co)/
/(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/ /(loot-link.com|loot-links.com|lootlink.org|lootlinks.co|lootdest.(info|org|com)|links-loot.com|linksloot.net)\/s\?.*$/
/mega-enlace.com/ /mega-enlace.com/