// ==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_setValue
// @grant GM_getValue
// ==/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");
}
if (loginButton) {
var idSave = GM_getValue('autologin_id');
if (idSave && id.value == idSave) {
loginButton.click();
}
}
}
var timeoutID;
function tm_doLogin() {
timeoutID = setTimeout(doLogin,500);
}
window.addEventListener("load", tm_doLogin, false);
window.addEventListener("hashchange", tm_doLogin, false);
自动记录id我也去掉了,我自己手工到数据页添加一条记录autologin_id,内容为:"poocp"包含引号在内,反正也只用设置一次。
【 在 doggeddog 的大作中提到: 】
: 加延迟没用
: 这就是chrome的feature, 他们不准备修复
:
https://bugs.chromium.org/p/chromium/issues/detail?id=669724: ...................
--
FROM 171.221.52.*