mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 16:03:01 +05:00
add autoclicks for vnshortener
https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-9934577
This commit is contained in:
parent
dbda57dd86
commit
5769a89402
4 changed files with 26 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
// @run-at document-start
|
||||
// @author Amm0ni4
|
||||
// @noframes
|
||||
// @version 92.2.19
|
||||
// @version 92.2.20
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -797,6 +797,8 @@
|
|||
// @include /surfsees.com|fitnessholic.net/
|
||||
// @include /cgsonglyricz.in|www.techhubcap.com/
|
||||
// @include /techyblogs.in|readytechflip.com/
|
||||
// @include /kbconlinegame.com/
|
||||
// @include /odijob.com/
|
||||
// @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.19
|
||||
// @version 92.2.20
|
||||
// @grant GM_setValue
|
||||
// @grant GM_getValue
|
||||
// @grant GM_addStyle
|
||||
|
@ -797,6 +797,8 @@
|
|||
// @include /surfsees.com|fitnessholic.net/
|
||||
// @include /cgsonglyricz.in|www.techhubcap.com/
|
||||
// @include /techyblogs.in|readytechflip.com/
|
||||
// @include /kbconlinegame.com/
|
||||
// @include /odijob.com/
|
||||
// @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/
|
||||
|
@ -2432,6 +2434,14 @@
|
|||
// uploadrar - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/87
|
||||
/flash.getpczone.com/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#downloadbtn')}) : null;
|
||||
|
||||
// https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-9934577
|
||||
const clickIfExistsWithDelay = (selector, delay) => {setTimeout(function() {clickIfExists(selector);}, delay);};
|
||||
/kbconlinegame.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickIfExists('#pro-continue');
|
||||
clickIfExistsWithDelay('#pro-btn', 2000);
|
||||
}) : null;
|
||||
/odijob.com/.test(url) ? afterDOMLoaded(function() {clickIfExists('#my-btn')}) : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -159,6 +159,8 @@
|
|||
// @include /surfsees.com|fitnessholic.net/
|
||||
// @include /cgsonglyricz.in|www.techhubcap.com/
|
||||
// @include /techyblogs.in|readytechflip.com/
|
||||
// @include /kbconlinegame.com/
|
||||
// @include /odijob.com/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -749,6 +751,14 @@
|
|||
// uploadrar - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/87
|
||||
/flash.getpczone.com/.test(url) ? afterDOMLoaded(function() {clickIfNotDisabled('#downloadbtn')}) : null;
|
||||
|
||||
// https://github.com/uBlockOrigin/uAssets/discussions/17361#discussioncomment-9934577
|
||||
const clickIfExistsWithDelay = (selector, delay) => {setTimeout(function() {clickIfExists(selector);}, delay);};
|
||||
/kbconlinegame.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickIfExists('#pro-continue');
|
||||
clickIfExistsWithDelay('#pro-btn', 2000);
|
||||
}) : null;
|
||||
/odijob.com/.test(url) ? afterDOMLoaded(function() {clickIfExists('#my-btn')}) : null;
|
||||
|
||||
})();
|
||||
|
||||
(function() {
|
||||
|
|
|
@ -777,6 +777,8 @@ https://paster.so/*
|
|||
/surfsees.com|fitnessholic.net/
|
||||
/cgsonglyricz.in|www.techhubcap.com/
|
||||
/techyblogs.in|readytechflip.com/
|
||||
/kbconlinegame.com/
|
||||
/odijob.com/
|
||||
/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