Greasy Fork

Greasy Fork is available in English.

九江学院电子资源平台链接直接跳转和账号自动填写助手

用于九江学院电子资源平台链接直接跳转助手

// ==UserScript==
// @name         九江学院电子资源平台链接直接跳转和账号自动填写助手
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  用于九江学院电子资源平台链接直接跳转助手
// @license      九江学院电子资源平台链接直接跳转助手
// @author       文人病
// @match        *://jxjjxy.cwkeji.cn/ermsClient/*
// @match        *://jxjjxy.cwkeji.cn/ermsLogin/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// ==/UserScript==
var user_name = ""; //学号
var user_password = "" ; //密码
(function() {
    'use strict';
    // Your code here...
    var urls = $(".green").attr("href");
    $( "input[name='userName']").val(user_name)
    $( "input[name='password']").val(user_password)
    $(window).attr('location',urls);
})();