CNKI知网重定向到海外页面

CNKI海外页面可以下载PDF格式的文章

  1. // ==UserScript==
  2. // @name CNKI知网重定向到海外页面
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description CNKI海外页面可以下载PDF格式的文章
  6. // @author https://gf.qytechs.cn/zh-CN/users/744513-xmj
  7. // @match *://kns.cnki.net/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Your code here...
  15. var myHost = window.location.host;
  16. var myFullLink = window.location.href;
  17. if (myHost.split('.')[0] == 'kns') {
  18. myFullLink = myFullLink.replace('kns', "chn.oversea");
  19. }
  20. console.log(myFullLink);
  21. window.location.href = myFullLink;
  22. })();

QingJ © 2025

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