Greasy Fork

教育平台pdf下载

从正规平台下载高清教科书pdf

目前为 2023-09-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         教育平台pdf下载
// @namespace    http://harukaworks.link/
// @version      0.1
// @description  从正规平台下载高清教科书pdf
// @author       清遥
// @license      MIT
// @match        https://basic.smartedu.cn/tchMaterial/*
// @grant        GM_openInTab
// ==/UserScript==

const currentUrl = window.location.href;
var str=currentUrl;
var newUrl=(str.slice(83, str.length - 47));
GM_openInTab("https://r1-ndr.ykt.cbern.com.cn/edu_product/esp/assets_document/"+newUrl+".pkg/pdf.pdf",{ active: true, setParent :true})