// ==UserScript== // @name checkbox // @namespace https://docs.scriptcat.org/ // @version 0.1.0 // @description try to take over the world! // @author You // @match https://www.smtickets.com/events/view/* // @match https://payment.ipay88.com.ph/* // @grant none // ==/UserScript== (function() { var inputs = document.getElementsByTagName('input'); for (var i = 0; i < inputs.length; i++) { if (inputs[i].type === 'checkbox') { console.log("找到了") inputs[i].click(); } } })();