您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在国家中小学智慧教育平台网站中添加电子课本下载按钮,免登录(不可用)下载电子课本
当前为
// ==UserScript== // @name 国家中小学智慧教育平台电子课本下载 // @namespace https://github.com/amakerlife // @version 1.1.7 // @description 在国家中小学智慧教育平台网站中添加电子课本下载按钮,免登录(不可用)下载电子课本 // @author Makerlife // @match https://*.smartedu.cn/tchMaterial/detail* // @match https://*.smartedu.cn/elecedu/detail* // @match https://www.zxx.edu.cn/tchMaterial/detail* // @icon https://basic.smartedu.cn/favicon.ico // @license MIT // @grant none // @compatible Chrome // @compatible Firefox // @compatible Edge // @compatible Safari // ==/UserScript== var url = window.location.href; var regex = /[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}/g; var match = regex.exec(url); if (match) { var id = match[0]; var redirectUrl = `https://r3-ndr.ykt.cbern.com.cn/edu_product/esp/assets_document/${id}.pkg/pdf.pdf`; window.location.assign(redirectUrl); } else { console.log("No ContentID Found!"); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址