Greasy Fork

Greasy Fork is available in English.

文泉学堂JPG下载

文泉学堂JPG下载,在Culaccino脚本基础上修改

< 脚本 文泉学堂JPG下载 的反馈

评价:一般 - 脚本能用,但还有一些问题

§
发布于:2022-06-10
编辑于:2022-06-10

感谢提供的脚本,有个地方需要修改,开头url部分需要增加转义,getinfo函数意义不大,毕竟好像已经屏蔽了这个域名。

修改的脚本如下,其他都可以就头部分这里部分转义改一下就行

原本代码部分:

const baseURL = `https://${window.location.host}/`
if(baseURL.indexOf("www") > -1){window.location.href=window.location.href.replace("www","wqbook")}
const bid = window.location.href.replace(baseURL + "read/pdf/", "")

改为

const baseURL = `https:\/\/${window.location.host}\/`
if(baseURL.indexOf("www") > -1){window.location.href=window.location.href.replace("www","wqbook")}
const bid = window.location.href.replace(baseURL + "read\/pdf", "")

发布留言

登录以发布留言。