国家中小学智慧教育平台教材下载按钮

用于下载国家中小学智慧教育平台的教材

< Părere la script-ul 国家中小学智慧教育平台教材下载按钮

Întrebare/comentariu

§
Postat în: 06-11-2022
Editat în: 06-11-2022

适配basic.smartedu.cn域名,并将下载按钮转移到明显位置

// ==UserScript==
// @name         国家中小学智慧教育平台教材下载按钮
// @namespace    https://greasyfork.org/zh-CN/scripts/450700
// @version      2.1
// @description  用于下载国家中小学智慧教育平台的教材
// @author       300g-BoHeYou
// @match        https://www.zxx.edu.cn/tchMaterial/*
// @match        https://basic.smartedu.cn/tchMaterial/*
// @icon         https://www.zxx.edu.cn/favicon.ico
// @license MIT
// @grant        GM_download
// @grant        GM_log

// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function(){
        var download = document.getElementsByClassName("index-module_info_evO1d")[0];
        var download_div = document.createElement("div");
        download.appendChild(download_div);
        download_div.style = 'width:150px;text-align:right;';
        download_div.innerHTML = '<span class="downloadbtn" style="color:white;padding:10px 20px;border-radius:10px;background:red">下载pdf</span>';

        document.getElementsByClassName("downloadbtn")[0].onclick = function(){
            GM_download({
                url:performance.getEntriesByType('resource').filter(entry =>{return /.*pdf\.pdf/.test(entry.name);})[0].name,
                name:document.title.split('·')[1]+".pdf",
                saveAs: true
            })
        };
    },2000);

})();
§
Postat în: 16-07-2023

感谢您的帮助,现在已经对脚本进行了更新

Postează un raspuns

Autentifică-te pentru a posta un răspuns.