// ==UserScript== // @name SaveToPDF // @namespace https://www.null119.cn // @version 0.1 // @description CSDN、52pojie页面文章一键保存为PDF // @author null119 // @match https://www.52pojie.cn/thread-* // @match https://blog.csdn.net/*/*/details/* // @icon https://gitee.com/null119/mypic/raw/master/img/202202140807071.png // @grant none // @downloadURL none // ==/UserScript== (function() { "use strict"; var host,url window.onload=function(){ var up,nxg1,newa,nimg,ndiv,allshow; url=window.location.href; up="//.*?\\.(.*?)\\." host=url.match(up)[1]; console.log(host); if(host==="52pojie"){ nxg1 = document.getElementById("post_reply"); if (nxg1) { nimg=document.createElement("img"); nimg.src="https://gitee.com/null119/mypic/raw/master/img/202202140612986.png"; newa = document.createElement("a"); newa.id="HtmToPDF"; newa.href="javascript:SaveToPDF();"; newa.title="收藏"; newa.appendChild(nimg); nxg1.parentNode.insertBefore(newa,nxg1.nextSibling); } } if(host==="csdn"){ setTimeout(1500); nxg1 = document.getElementsByClassName("opt-letter-watch-box"); if (nxg1) { newa = document.createElement("a"); newa.setAttribute("class","personal-watch bt-button"); newa.id="HtmToPDF"; newa.href="javascript:SaveToPDF();"; newa.text="收藏"; ndiv=document.createElement("div"); ndiv.setAttribute("class","opt-letter-watch-box"); ndiv.appendChild(newa); nxg1[1].parentNode.insertBefore(ndiv,nxg1[1].nextSibling); allshow=document.getElementById("btn-readmore-zk"); if(allshow){ allshow.click() }; var zk=document.getElementsByClassName("look-more-preCode contentImg-no-view"); if(zk.length>0){ console.log(zk.length-1); for (var j = 0; j'+title+""+prnhtml+""; newWin.document.close(); newWin.focus(); setTimeout(() => { newWin.print(); newWin.close(); }, 300); }; })();