51交付自动填充脚本
// ==UserScript==
// @name 51交付自动填充
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 51交付自动填充脚本
// @author Yongligua
// @match http://51jiaofu.com/Account/Login?ReturnUrl=%2F
// @grant none
// ==/UserScript==
(function() {
document.getElementsByName('UsernameOrEmailAddress')[0].value="11111111111";//Enter your username here
document.getElementsByName('Password')[0].value="11111111";//Enter your password here
})();