greasemonkey自动登陆脚本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了greasemonkey自动登陆脚本相关的知识,希望对你有一定的参考价值。
// ==UserScript==
// @name 4399login
// @include http://my.4399.com*
// @version 1
// @grant none
// ==/UserScript==
window.onload = function() {
var loginform = document.getElementsByClassName(‘my_unlogin‘)[0].firstChild;
if (loginform) {
loginform.click();
}
};
window.setTimeout(function(){
var frame = document.getElementById(‘popup_login_frame‘).contentDocument;
if (frame){
frame.getElementById(‘password‘).value = "111111";
var loginBtn = frame.getElementsByClassName(‘ptlogin_btn‘)[0];
loginBtn.click();
}
},5000);
以上是关于greasemonkey自动登陆脚本的主要内容,如果未能解决你的问题,请参考以下文章
从 Chrome 上的 Greasemonkey 脚本将 JS 函数注入页面
使用外部 CSS 文件将 jQuery UI 添加到 Greasemonkey 脚本失败