// ==UserScript== // @name CNKI PDF Download // @namespace http://joyuer.cn // @version 0.1.4 // @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/jquery@3.4.1/dist/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(".dllink").prepend(`加载中...`) 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()) })();