// ==UserScript==
// @name 国家中小学智慧教育平台_教材下载
// @version 0.1
// @description 国家中小学智慧教育平台(教材下载)
// @author Codewyx
// @match *basic.smartedu.cn/tchMaterial/detail*
// @match *zxx.tedu.cn/tchMaterial/detail*
// @icon https://basic.smartedu.cn/favicon.ico
// @license MIT
// @grant none
// @namespace https://greasyfork.org/users/809727
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
function getQueryString(name) {var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");var r = window.location.search.substr(1).match(reg);if (r != null) return unescape(r[2]); return null;};
window.onload=()=>{
var interval = setInterval(
function(){
document.querySelector(".web-breadcrumb").innerHTML+=`
`;
//
if(document.querySelector("#but_1")!=null){
clearInterval(interval);
return;
}
}, 1000);
}
//
})();