mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-31 06:57:29 +05:00
add bypass for some sites
This commit is contained in:
parent
2f15d7e217
commit
927b7b8f83
4 changed files with 53 additions and 0 deletions
|
@ -655,6 +655,7 @@
|
|||
// @match https://linkspy.cc/tr/*
|
||||
// @match https://*.shrinkme.us/*
|
||||
// @match *://*.shareus.io/*
|
||||
// @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/
|
||||
// @include /mundopolo.net/
|
||||
// @include /comohoy.com/
|
||||
// @include /sphinxanime.com\/short/
|
||||
|
|
|
@ -655,6 +655,7 @@
|
|||
// @match https://linkspy.cc/tr/*
|
||||
// @match https://*.shrinkme.us/*
|
||||
// @match *://*.shareus.io/*
|
||||
// @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/
|
||||
// @include /mundopolo.net/
|
||||
// @include /comohoy.com/
|
||||
// @include /sphinxanime.com\/short/
|
||||
|
@ -1786,6 +1787,28 @@
|
|||
// ----- ----- -----
|
||||
|
||||
|
||||
// ----- redbtn sites bypass -----
|
||||
(function() {
|
||||
'use strict';
|
||||
if (/((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/.test(window.location.href)){
|
||||
document.addEventListener('DOMContentLoaded', function() { //Wait for the page to be loaded
|
||||
var intervalId = setInterval(function() { //check every 0.5s
|
||||
var rdBtn = document.querySelector('.rd_btn');
|
||||
if (rdBtn) {
|
||||
if (rdBtn.href && rdBtn.href.includes("/?re=")){ //If redbtn has link, redirect to it
|
||||
window.location.assign(rdBtn.href)
|
||||
clearInterval(intervalId);
|
||||
} else { //If it doesnt have link, just click it
|
||||
rdBtn.click()
|
||||
}
|
||||
}
|
||||
}, 500);
|
||||
})
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
|
||||
// ----- Simple redirects -----
|
||||
(function() {
|
||||
'use strict';
|
||||
|
|
28
extra_bypasses/redbtn_sites.user.js
Normal file
28
extra_bypasses/redbtn_sites.user.js
Normal file
|
@ -0,0 +1,28 @@
|
|||
// ==UserScript==
|
||||
// @name redbtn sites
|
||||
// @include /((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/
|
||||
//.rd_btn sites, vegamovies.ngo, https://github.com/uBlockOrigin/uAssets/commit/f450ad365a3475c9f4143f4b447c7de994737b3a
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
// ----- redbtn sites bypass -----
|
||||
(function() {
|
||||
'use strict';
|
||||
if (/((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/.test(window.location.href)){
|
||||
document.addEventListener('DOMContentLoaded', function() { //Wait for the page to be loaded
|
||||
var intervalId = setInterval(function() { //check every 0.5s
|
||||
var rdBtn = document.querySelector('.rd_btn');
|
||||
if (rdBtn) {
|
||||
if (rdBtn.href && rdBtn.href.includes("/?re=")){ //If redbtn has link, redirect to it
|
||||
window.location.assign(rdBtn.href)
|
||||
clearInterval(intervalId);
|
||||
} else { //If it doesnt have link, just click it
|
||||
rdBtn.click()
|
||||
}
|
||||
}
|
||||
}, 500);
|
||||
})
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
|
@ -640,6 +640,7 @@ https://dropgalaxy.co/drive/*
|
|||
https://linkspy.cc/tr/*
|
||||
https://*.shrinkme.us/*
|
||||
*://*.shareus.io/*
|
||||
/((cybertyrant|profitshort|technorozen|hubdrive.me|bestadvise4u|newztalkies|aiotechnical|cryptonewzhub|techvybes|wizitales|101desires|gdspike).com|courselinkfree.us|10desires.org|theapknews.shop|trendzguruji.me)/
|
||||
/mundopolo.net/
|
||||
/comohoy.com/
|
||||
/sphinxanime.com\/short/
|
||||
|
|
Loading…
Reference in a new issue