Auto click Continue on Cuttlinks
// ==UserScript==
// @name Cuttlinks Auto Submit
// @namespace AutoBypass
// @version 1.0
// @description Auto click Continue on Cuttlinks
// @author NickUpdates-Telegram
// @match https://cuttlinks.com/*
// @grant none
// @run-at document-end
// @license GPL-3.0-only
// ==/UserScript==
(function() {
'use strict';
function submitForm() {
const btn = document.querySelector("#submit-button");
if (btn) {
btn.click();
}
}
submitForm();
const observer = new MutationObserver(() => submitForm());
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
})();