Greasy Fork

Greasy Fork is available in English.

88dushu小说网站出现下载按钮

提供下载按钮

目前为 2019-06-17 提交的版本,查看 最新版本

// ==UserScript==
// @name         88dushu小说网站出现下载按钮
// @namespace    http://ynotme.club
// @version      0.1
// @description  提供下载按钮
// @author       zhangtao
// @match        https://www.88dush.com/xiaoshuo/*/*/
// @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>`);
            return;
        }
        i++;
    }
    // Your code here...
})();