From beedc9a259214be62e0a9a9e5d864c7cb4580485 Mon Sep 17 00:00:00 2001 From: Amm0ni4 Date: Mon, 12 Feb 2024 03:36:21 +0100 Subject: [PATCH] added shrinkme.us autoclick --- Bypass_All_Shortlinks.meta.js | 1 + Bypass_All_Shortlinks.user.js | 19 +++++++++++++++++++ extra_bypasses/shrinkme.us.user.js | 23 +++++++++++++++++++++++ 3 files changed, 43 insertions(+) create mode 100644 extra_bypasses/shrinkme.us.user.js diff --git a/Bypass_All_Shortlinks.meta.js b/Bypass_All_Shortlinks.meta.js index cc86515..0e4154f 100644 --- a/Bypass_All_Shortlinks.meta.js +++ b/Bypass_All_Shortlinks.meta.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 diff --git a/Bypass_All_Shortlinks.user.js b/Bypass_All_Shortlinks.user.js index 520a2fa..50ff72a 100644 --- a/Bypass_All_Shortlinks.user.js +++ b/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(); + } +})(); +// ----- ----- ----- + diff --git a/extra_bypasses/shrinkme.us.user.js b/extra_bypasses/shrinkme.us.user.js new file mode 100644 index 0000000..a197dde --- /dev/null +++ b/extra_bypasses/shrinkme.us.user.js @@ -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(); + } +})(); +// ----- ----- ----- +