// ==UserScript== // @name 北理乐学视频下载助手 // @namespace https://www.ordosx.tech/ // @version 1.0 // @description 将课程列表的播放页面链接替换成视频文件下载链接! // @author OrdosX // @match http://lexue.bit.edu.cn/course/view.php?id=* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; let icon = ` `; window.addEventListener('load', function() { $('li.activity.resource.modtype_resource a').each( function(i, e){ if($(e).children('img')[0].src.match(/mpeg/)!=null){ $.ajax({ url:e.href, async:true, success:(result)=>{ if(result.match(/http(\S*).mp4/) != null) { $(e).attr('href',result.match(/http(\S*).mp4/)[0]); $(e).attr('download',""); $(e).children('img')[0].remove(); $(e).prepend(icon) } } }) } } ) $('li.activity.page.modtype_page a').each( function(i, e){ $.ajax({ url:e.href, async:true, success:(result)=>{ if(result.match(/http(\S*).mp4/) != null){ $(e).attr('href',result.match(/http(\S*).mp4/)[0]); $(e).attr('download',""); $(e).children('img')[0].remove(); $(e).prepend(icon) } } }) } ) }); })();