CNKI-PDF下载

显示 CNKI-PDF 下载按钮

  1. // ==UserScript==
  2. // @name CNKI-PDF下载
  3. // @namespace cnki-pdf-download
  4. // @version 0.2
  5. // @description 显示 CNKI-PDF 下载按钮
  6. // @author Ericwyn (github.com/Ericwyn)
  7. // @match *.cnki.net/KCMS/detail*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. window.addPDFDownload = function(){
  14. if(document.getElementById("DownLoadParts") != undefined) {
  15. if(document.getElementById("DownLoadParts").outerHTML.indexOf("PDF下载") >= 0) {
  16. return
  17. }
  18. let inner = document.getElementById("DownLoadParts").children[0].outerHTML
  19. if(inner.indexOf("dflag=nhdown")>0 && inner.indexOf("整本下载")>0 ){
  20. inner = inner.replace("dflag=nhdown","dflag=pdfdown")
  21. inner = inner.replace("整本下载","PDF全文下载")
  22. document.getElementById("DownLoadParts").innerHTML += inner
  23. }
  24. }
  25. }
  26. window.addPDFDownload();
  27. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址