Greasy Fork is available in English.
Auto klik Continue / I am not a robot / Go di cuttlinks
// ==UserScript==
// @name Cutty & Exe Bypass
// @namespace http://tampermonkey.net/
// @version 1.2
// @description Auto klik Continue / I am not a robot / Go di cuttlinks
// @author pcayb96
// @match https://cuttlinks.com/*
// @match https://exe-links.com/*
// @match https://exeygo.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function autoClick() {
const keywords = [
"continue",
"go",
"i am not a robot",
];
// cari semua button dan a
const elements = document.querySelectorAll('button, a, input[type="button"], input[type="submit"]');
elements.forEach(el => {
let text = (el.innerText || el.value || "").toLowerCase().trim();
if (!text) return;
for (let key of keywords) {
if (text.includes(key)) {
console.log("Auto Click:", text);
el.click();
break;
}
}
});
}
// jalankan tiap 5 detik
setInterval(autoClick, 5000);
})();