使用前需要把第15行中的账号改为你的手机号,第16行改为你的密码。
// ==UserScript== // @name GIWIFI自动登录 // @namespace http://ccvxx.cn/ // @version 0.7 // @description 使用前需要把第15行中的账号改为你的手机号,第16行改为你的密码。 // @author Rapt0r 、 术の語、涼城 // @match http://login.gwifi.com.cn/* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... document.getElementById("login_name").value='用户';//别忘了把账号改为你的手机号 document.getElementById("login_password").value='密码';//别忘了把密码改为你的密码 document.getElementById("loginButton").click();//模拟点击 })();