Greasy Fork is available in English.
提供下载按钮
// ==UserScript==
// @name 88dushu小说网站出现下载按钮
// @namespace http://ynotme.club
// @version 0.3
// @description 提供下载按钮
// @author zhangtao
// @match https://www.88dush.com/xiaoshuo/*/*/
// @match https://m.88dush.com/info/*/
// @match https://www.88dushu.com/xiaoshuo/*/*/
// @match https://m.88dushu.com/info/*/
// @grant none
// ==/UserScript==
(function() {
'use strict';
var pathnames = window.location.pathname.split("/").reverse();
console.log(pathnames);
var i =0 ;
while (i<pathnames.length) {
var path = pathnames[i];
if(path && path!=""){
$(".info").append(`<a href="/modules/article/txtarticle.php?id=${path}">下载本书</a>`);
$(".ablum_read").append(`<span><a href="/modules/article/txtarticle.php?id=${path}">下载本书</a></span>`)
return;
}
i++;
}
// Your code here...
})();