(function(window){
// 这样写不污染命名空间
})(window);
还有load可以换成DOMContentLoaded,触发更快。。
【 在 poocp (慢速随机指标) 的大作中提到: 】
: 29行版
:
: // ==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
: // ==/UserScript==
: function doLogin() {
: var loginBu
: if (window.location.pathname == "/") {
: loginButton = document.getElementById("b_login");
: id = document.getElementById("id");
: } else {
: loginButton = document.getElementById("u_login_submit");
: id = document.getElementById("u_login_id");
: }
: if (loginButton && id && id.value.length) {
: loginButton.click();
: }
: }
: var timeoutID;
: function tm_doLogin() {
: timeoutID = setTimeout(doLogin,1000);
: }
: window.addEventListener("load", tm_doLogin, false);
:
--
FROM 114.87.76.*