bypass-all-shortlinks-deblo.../extra_bypasses/shrinkme.us.user.js
2024-02-12 12:17:38 +01:00

23 lines
612 B
JavaScript

// ==UserScript==
// @name shrinkme.us bypass
// @match https://*.shrinkme.us/*
// @run-at document-start
// ==/UserScript==
// ----- Bypass for shrinkme.us -----
(function() {
'use strict';
if (window.location.href.startsWith("https://shrinkme.us/")) {
function waitForButton() {
var button = document.getElementById('invisibleCaptchaShortlink');
if (button) {
button.click();
} else {
setTimeout(waitForButton, 1000); // Check every second
}
}
waitForButton();
}
})();
// ----- ----- -----