mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2024-12-29 16:33:02 +05:00
added shrinkme.us autoclick
This commit is contained in:
parent
c34ceac81f
commit
beedc9a259
3 changed files with 43 additions and 0 deletions
|
@ -655,6 +655,7 @@
|
|||
// @match *://*.shareus.io/*
|
||||
// @match https://linkspy.cc/tr/*
|
||||
// @match https://m.mundopolo.net/#!*
|
||||
// @match https://*.shrinkme.us/*
|
||||
// @require https://code.jquery.com/jquery-2.1.1.min.js
|
||||
// @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/
|
||||
// @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js
|
||||
|
|
|
@ -655,6 +655,7 @@
|
|||
// @match *://*.shareus.io/*
|
||||
// @match https://linkspy.cc/tr/*
|
||||
// @match https://m.mundopolo.net/#!*
|
||||
// @match https://*.shrinkme.us/*
|
||||
// @require https://code.jquery.com/jquery-2.1.1.min.js
|
||||
// @exclude /^(https?:\/\/)(.+)?((advertisingexcel|talkforfitness|rsadnetworkinfo|rsinsuranceinfo|rsfinanceinfo|rssoftwareinfo|rshostinginfo|rseducationinfo|gametechreviewer|vegan4k|phineypet|batmanfactor|techedifier|urlhives|linkhives|github|freeoseocheck|greenenez|aliyun|reddit|bing|live|yahoo|wiki-topia|edonmanor|vrtier|whatsapp|gearsadviser|edonmanor|tunebug|menrealitycalc|amazon|ebay|payoneer|paypal|skrill|stripe|tipalti|wise|discord|tokopedia|taobao|aliexpress|(cloud|mail|translate|analytics|accounts|myaccount|contacts|clients6|developers|payments|pay|ogs|safety|wallet).google).com|(thumb8|thumb9|crewbase|crewus|shinchu|shinbhu|ultraten|uniqueten|topcryptoz|allcryptoz|coinsvalue|cookinguide|cryptowidgets|webfreetools|carstopia|makeupguide|carsmania).net|(linksfly|shortsfly|urlsfly|wefly|blog24).me|(greasyfork|openuserjs|adarima|telegram).org|mcrypto.club|misterio.ro|insurancegold.in|coinscap.info|(shopee|lazada|rakuten).*|(dana|ovo).id)(\/.*)/
|
||||
// @downloadURL https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated/raw/branch/main/Bypass_All_Shortlinks.user.js
|
||||
|
@ -1797,3 +1798,21 @@
|
|||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
|
||||
// ----- Bypass for shrinkme.us -----
|
||||
(function() {
|
||||
'use strict';
|
||||
if (/^https:\/\/shrinkme\.us\//.test(window.location.href)) {
|
||||
function waitForButton() {
|
||||
var button = document.getElementById('invisibleCaptchaShortlink');
|
||||
if (button) {
|
||||
button.click();
|
||||
} else {
|
||||
setTimeout(waitForButton, 1000); // Check every second
|
||||
}
|
||||
}
|
||||
waitForButton();
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
||||
|
|
23
extra_bypasses/shrinkme.us.user.js
Normal file
23
extra_bypasses/shrinkme.us.user.js
Normal file
|
@ -0,0 +1,23 @@
|
|||
// ==UserScript==
|
||||
// @name shrinkme.us bypass
|
||||
// @match https://*.shrinkme.us/*
|
||||
// @run-at document-start
|
||||
// ==/UserScript==
|
||||
|
||||
// ----- Bypass for shrinkme.us -----
|
||||
(function() {
|
||||
'use strict';
|
||||
if (/^https:\/\/shrinkme\.us\//.test(window.location.href)) {
|
||||
function waitForButton() {
|
||||
var button = document.getElementById('invisibleCaptchaShortlink');
|
||||
if (button) {
|
||||
button.click();
|
||||
} else {
|
||||
setTimeout(waitForButton, 1000); // Check every second
|
||||
}
|
||||
}
|
||||
waitForButton();
|
||||
}
|
||||
})();
|
||||
// ----- ----- -----
|
||||
|
Loading…
Reference in a new issue