mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-28 07:53:01 +05:00
fix vnshortener
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/110 https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/149
This commit is contained in:
parent
26884dbb7c
commit
bf095d1471
4 changed files with 30 additions and 0 deletions
|
@ -743,6 +743,8 @@
|
|||
// @include /render-state.to\/download\/\?link=/
|
||||
// @include /www.lanoticia.cc/
|
||||
// @include /altearnativasa.com/
|
||||
// @include /importantclass.com/
|
||||
// @include /bebkub.com/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
|
|
|
@ -743,6 +743,8 @@
|
|||
// @include /render-state.to\/download\/\?link=/
|
||||
// @include /www.lanoticia.cc/
|
||||
// @include /altearnativasa.com/
|
||||
// @include /importantclass.com/
|
||||
// @include /bebkub.com/
|
||||
// @include /filecrypt.(cc|co)/
|
||||
// @include /^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
// @include /(mega-enlace|acortados).com/
|
||||
|
@ -2404,6 +2406,17 @@
|
|||
setTimeout(function() {document.querySelector('#.tp-blue').click();}, 3000);
|
||||
}) : null;
|
||||
|
||||
// vnshortner - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/110, https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/149
|
||||
const clickWithDelay = (selector, delay) => { setTimeout(function() { document.querySelector(selector).click(); }, delay); };
|
||||
/importantclass.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickWithDelay('#my-btn', 3000);
|
||||
}) : null;
|
||||
/bebkub.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickWithDelay('#pro-continue', 1000);
|
||||
clickWithDelay('#VerifyBtn', 3000);
|
||||
clickWithDelay('#pro-btn', 5000);
|
||||
}) : null;
|
||||
|
||||
// inshorturl.com - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/104
|
||||
/newshuta.in/.test(url) ? afterDOMLoaded(function() {
|
||||
clickIfExists('#tp98');
|
||||
|
|
|
@ -173,6 +173,8 @@
|
|||
// @include /render-state.to\/download\/\?link=/
|
||||
// @include /www.lanoticia.cc/
|
||||
// @include /altearnativasa.com/
|
||||
// @include /importantclass.com/
|
||||
// @include /bebkub.com/
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
|
@ -826,6 +828,17 @@
|
|||
setTimeout(function() {document.querySelector('#.tp-blue').click();}, 3000);
|
||||
}) : null;
|
||||
|
||||
// vnshortner - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/110, https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/149
|
||||
const clickWithDelay = (selector, delay) => { setTimeout(function() { document.querySelector(selector).click(); }, delay); };
|
||||
/importantclass.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickWithDelay('#my-btn', 3000);
|
||||
}) : null;
|
||||
/bebkub.com/.test(url) ? afterDOMLoaded(function() {
|
||||
clickWithDelay('#pro-continue', 1000);
|
||||
clickWithDelay('#VerifyBtn', 3000);
|
||||
clickWithDelay('#pro-btn', 5000);
|
||||
}) : null;
|
||||
|
||||
// inshorturl.com - https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/issues/104
|
||||
/newshuta.in/.test(url) ? afterDOMLoaded(function() {
|
||||
clickIfExists('#tp98');
|
||||
|
|
|
@ -723,6 +723,8 @@ https://paster.so/*
|
|||
/render-state.to\/download\/\?link=/
|
||||
/www.lanoticia.cc/
|
||||
/altearnativasa.com/
|
||||
/importantclass.com/
|
||||
/bebkub.com/
|
||||
/filecrypt.(cc|co)/
|
||||
/^(https?:\/\/)(?!(bypass.city|adbypass.org))(linkvertise.com|(linkvertise|link-to).net)/
|
||||
/(mega-enlace|acortados).com/
|
||||
|
|
Loading…
Reference in a new issue