// ==UserScript==
//脚本名称
// @name 堡垒机自动登录
// @namespace tamper.hurricane.com
// @version 0.1
// @description try to take over the world!
// @author You
//匹配执行的网页
// @match https://cbh.chinatowercom.cn/*
//引入的js
// @require http://code.jquery.com/jquery-1.11.0.min.js
// @grant none
// ==/UserScript==
(function() {
setTimeout(function(){
$('input[name="pwd"]').val('xxxx')
$('#login-root > div > div:nth-child(2) > div > div > div.login-content-layout > div > div.tab-content > div:nth-child(1) > div > button > span').click()
}, 3000);
// Your code here...
})();
参考:
如何5分钟写一个浏览器脚本移除广告 以及从脚本库安装别人的脚本_哔哩哔哩_bilibili