add bypass for some sites

This commit is contained in:
Amm0ni4 2024-02-15 02:50:50 +01:00
parent 2f15d7e217
commit 927b7b8f83
4 changed files with 53 additions and 0 deletions

View file

@ -655,6 +655,7 @@
// @match https://linkspy.cc/tr/* // @match https://linkspy.cc/tr/*
// @match https://*.shrinkme.us/* // @match https://*.shrinkme.us/*
// @match *://*.shareus.io/* // @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 /mundopolo.net/
// @include /comohoy.com/ // @include /comohoy.com/
// @include /sphinxanime.com\/short/ // @include /sphinxanime.com\/short/

View file

@ -655,6 +655,7 @@
// @match https://linkspy.cc/tr/* // @match https://linkspy.cc/tr/*
// @match https://*.shrinkme.us/* // @match https://*.shrinkme.us/*
// @match *://*.shareus.io/* // @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 /mundopolo.net/
// @include /comohoy.com/ // @include /comohoy.com/
// @include /sphinxanime.com\/short/ // @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 ----- // ----- Simple redirects -----
(function() { (function() {
'use strict'; 'use strict';

View 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);
})
}
})();
// ----- ----- -----

View file

@ -640,6 +640,7 @@ https://dropgalaxy.co/drive/*
https://linkspy.cc/tr/* https://linkspy.cc/tr/*
https://*.shrinkme.us/* https://*.shrinkme.us/*
*://*.shareus.io/* *://*.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/ /mundopolo.net/
/comohoy.com/ /comohoy.com/
/sphinxanime.com\/short/ /sphinxanime.com\/short/