// ==UserScript== // @name 超星课程资料下载 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 给超星课程资料中不能下载的文件添加下载按钮 // @author jungtravor // @match *.chaoxing.com/coursedata* // @icon http://www.chaoxing.com/images/discover/newcxdiscover/fx2.ico // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; const $ = window.jQuery; // Your code here... $("div.ZYCon").find("tr").each(function(){ var objectID = $(this).attr("objectid"); if(objectID && ($(this).find("a.fr.download").length===0)){ $(this).find("div.fr.zybtn").prepend(''); } }); })();