mirror of
https://codeberg.org/Amm0ni4/bypass-all-shortlinks-debloated.git
synced 2025-01-01 17:33:00 +05:00
24 lines
611 B
JavaScript
24 lines
611 B
JavaScript
|
// ==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();
|
||
|
}
|
||
|
})();
|
||
|
// ----- ----- -----
|
||
|
|