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