bypass-all-shortlinks-deblo.../extra_bypasses/shrinkme.us.user.js

24 lines
612 B
JavaScript
Raw Normal View History

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