知网PDF下载

对指向网址进行了修改,可下载知网pdf文件

  1. // ==UserScript==
  2. // @name 知网PDF下载
  3. // @namespace https://xzonn.top/
  4. // @version 1.0.1
  5. // @description 对指向网址进行了修改,可下载知网pdf文件
  6. // @author sanf
  7. // @include http*://kns.cnki.net/kns8/defaultresult/index
  8. // @icon https://www.cnki.net/favicon.ico
  9. // @grant none
  10. // @supportURL https://xzonn.top/posts/Download-Pdf-File-from-Cnki.html
  11. // @license cc by-nc-sa 4.0
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. let changeLink = function (e) {
  17. let target = e.target;
  18. while (target.tagName.toLowerCase() != "a") {
  19. if (target.tagName.toLowerCase() == "body") {
  20. return;
  21. }
  22. target = target.parentNode;
  23. }
  24. if (target.href && target.href.match(/^https?:\/\/kns\.cnki\.net\/(.*=(?:CMFD|CDFD)(?:&.*)?)$/)) {
  25. target.href = target.href.replace(/^https?:\/\/kns\.cnki\.net\/(.*=(?:CMFD|CDFD)(?:&.*)?)$/, "https://oversea.cnki.net/$1");
  26. }
  27. };
  28. document.body.addEventListener("mousedown", changeLink);
  29. document.body.addEventListener("click", changeLink);
  30. })();

QingJ © 2025

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