// ==UserScript== // @id CNKI_PDF_Supernova // @name 知网PDF下载助手 // @version 3.3.3 // @namespace https://github.com/supernovaZhangJiaXing/Tampermonkey/ // @author Supernova // @description 直接以PDF格式从知网下载期刊论文和博硕士论文; 下载博士论文目录 // @include http*://*.cnki.net/* // @include http*://*.cnki.net.*/* // @include */DefaultResult/Index* // @include */KNS8/AdvSearch* // @include */detail.aspx* // @include */CatalogViewPage.aspx* // @include */Article/* // @include */kns/brief/* // @include */kns55/brief/* // @include */grid2008/brief/* // @include */detail/detail.aspx* // @exclude http://image.cnki.net/* // @run-at document-idle // @grant unsafeWindow // @grant GM_setClipboard // @grant GM_xmlhttpRequest // @license MIT // @downloadURL none // ==/UserScript== 'use strict'; var $ = unsafeWindow.jQuery; var contents = ''; var pdf; $(document).ready(function() { var myurl = window.location.href; var isDetailPage = myurl.indexOf("detail.aspx") != -1 ? true: false; // 点进文献后的详情页 var isContentPage = myurl.indexOf("kdoc/download.aspx?") != -1 ? true : false; // 分章下载 if (isDetailPage === false) { if (window.location.href.indexOf("kns8") != -1){ $(document).ajaxSuccess(function(event, xhr, settings) { if (settings.url.indexOf('/Brief/GetGridTableHtml') + 1 || settings.url.indexOf('request/GetWebGroupHandler.ashx') + 1) { window.alert('hhhhhhhhhhhhhhhh') var down_btns = $('.downloadlink'); for (var i = 0; i < down_btns.length; i++) { down_btns.eq(i).after(down_btns.eq(i).clone().attr('href', toPDF).css('background-color', '#C7FFC7').mouseover(function(e){ this.title="PDF下载"; })).css('background-color', '#C7FFFF').mouseover(function(e){ this.title="CAJ下载"; }); } } $('th').eq(8).css('width', '12%') }); } } else { // 只对"博硕论文"详情页做优化, 否则影响期刊页面的显示 // 来自: https://greasyfork.org/zh-CN/scripts/371938 if (location.search.match(/dbcode=C[DM][FM]D&/i)) { // 整本下载替换为CAJ下载 $(".btn-dlcaj").first().html($(".btn-dlcaj").first().html().replace("整本", "CAJ")); // pdf文件的url var pdf_url = $(".btn-dlpdf").remove().find("a").attr("href").replace("&dflag=downpage", "&dflag=pdfdown"); // 添加PDF下载 var pdf_down = $('
  • PDF下载
  • '); $(".btn-dlcaj").first().after(pdf_down); // 从分章下载获取目录的URL var content_url = $(".btn-dlcaj:eq(1)").find("a").attr("href") || '?'; content_url = 'https://chn.oversea.cnki.net/kcms/download.aspx' + content_url.match(/\?.*/)[0]; GM_xmlhttpRequest({method: 'GET', url: content_url, onload: manage_contents}); // 右侧添加使用说明 $(".operate-btn").append($('
  • 脚本说明
  • ')); // 右侧底部添加工具下载(PdgContentEditor) $(".opts-down").append($('

    ' + '点击下载目录合并软件及说明
    提取码: y77f
    ')) } } }); // 来自: https://greasyfork.org/zh-CN/scripts/371938 function toPDF() { return $(this).data('PDF', this.href.replace(/&dflag=\w*|$/, '&dflag=pdfdown')).data("PDF"); } function get_content(cnt_list){ var contents = ""; for (var i = 0; i < cnt_list.length - 1; i++) { // 长度减一, 因为最后一个是text var cnt_item = cnt_list[i].childNodes[1].childNodes[1]; cnt_item = cnt_item.innerHTML; var cnt_page = cnt_list[i].childNodes[3].childNodes[0].textContent.trim().split("-")[0]; // 知网的目录给的是个范围, 正常只需要前半部分 contents = contents + cnt_item.trim().replace(/ /g, " ").replace(/ {4}/g, "\t") + "\t" + cnt_page + "\r\n"; } return contents; } // 来自: https://greasyfork.org/zh-CN/scripts/371938 function manage_contents(xhr) { var cnt_list = $('tr', xhr.responseText); // 目录列表 var contents = get_content(cnt_list); // 目录内容 // 添加目录复制 $('.btn-dlpdf').first().after($('

  • 目录复制
  • ').click(function() { GM_setClipboard(contents); // 运用油猴脚本自带的复制函数 window.alert('目录已复制到剪贴板'); })); // 添加目录下载 $('.btn-dlpdf').first().after($('
  • 目录下载
  • ').click(function() { var data = new Blob([contents],{type:"text/plain; charset=UTF-8"}); $(this).find('a').attr("download", '目录_' + $('.wx-tit h1:first-child()').text().trim() + '.txt'); $(this).find('a').attr("href", window.URL.createObjectURL(data)); window.URL.revokeObjectURL(data); window.alert("目录索引已保存, 请使用PdgCntEditor软件将目录整合到PDF中"); })); }