试过了,Windows 10下的Chrome 64位,没问题。
又不尝试获取用户密码,就延迟一会,等自动填上内容之后点一下登录按钮,能有什么问题。
// ==UserScript==
// @name 水木自动登录
// @namespace https://github.com/doggeddog
// @homepage https://github.com/doggeddog/smth_scripts
// @version 0.6.1
// @description 水木社区不能保存登录状态, 这个脚本可以用来自动登录.
// @author doggeddog
// @match *://*.newsmth.net/*
// @match *://*.mysmth.net/*
// @run-at document-end
// @grant GM_getValue
// @grant GM_setValue
// ==/UserScript==
function doLogin() {
var loginButton, id, passwd;
if (window.location.pathname == "/") {
loginButton = document.getElementById("b_login");
id = document.getElementById("id");
passwd = document.getElementById("pwd");
} else {
loginButton = document.getElementById("u_login_submit");
id = document.getElementById("u_login_id");
passwd = document.getElementById("u_login_passwd");
}
var idSave = GM_getValue('autologin_id');
if (!idSave && id && id.value.length) {
GM_setValue('autologin_id', id.value)
idSave = id.value
}
if (loginButton) {
if (idSave && id.value == idSave) {
loginButton.click();
}
}
}
var timeoutID;
function tm_doLogin() {
timeoutID = setTimeout(doLogin,1000);
}
window.addEventListener("load", tm_doLogin, false);
【 在 doggeddog 的大作中提到: 】
: chrome 试了吗, 应该会有问题
:
--
FROM 171.221.52.*