Greasy Fork is available in English.
给超星课程资料中不能下载的文件添加下载按钮
当前为
// ==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
// ==/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('<a href="https://dl-ans.chaoxing.com/download/'+objectID+'" class="fr download"></a>');
}
});
})();