您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically submit a form on ashrfd.xyz to bypass it
当前为
// ==UserScript== // @name ashrfd bypass // @namespace http://tampermonkey.net/ // @version 0.1 // @description Automatically submit a form on ashrfd.xyz to bypass it // @author Minoa // @match https://ashrfd.xyz/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Your code to be executed on page load window.addEventListener('load', function() { // Check if the form exists var userForm = document.querySelector("#userForm"); if (userForm) { // Create hidden input element var el = document.createElement("input"); el.type = "hidden"; el.name = "validator94994"; el.value = "true"; userForm.appendChild(el); // Disable button var btn = document.querySelector("#cbt"); if (btn) { btn.innerText = "Please wait..."; btn.disabled = true; } // Submit the form userForm.submit(); } }); })();