CNKI PDF Download

Add a PDF download button for CNKI papers if possible

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         CNKI PDF Download
// @namespace    http://joyuer.cn
// @version      0.1.5
// @description  Add a PDF download button for CNKI papers if possible
// @author       Joyuer
// @match        *.cnki.net/kcms/detail/detail*
// @match        *.cnki.net/KCMS/detail/detail*
// @require      https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(".dllink").prepend(`<a id="custom-pdf-dl-btn" class="icon icon-dlGreen" href="#">加载中...</a>`)
    const host = "https://joyuer.azurewebsites.net"
    fetch(host + "/cnki/pdf?url="+location.href).then(r => r.json()).then(r => {
        if (r.pdf_url) {
            $("#custom-pdf-dl-btn").attr('href', r.pdf_url)
            $("#custom-pdf-dl-btn").text('PDF 下载')
        }
        else
            $("#custom-pdf-dl-btn").remove()
    }).catch(e => $("#custom-pdf-dl-btn").remove())
})();