去除 jQuery 依赖的同时,把核心部分重写成了按一个列表去替换图片链接的形式,方便后面可能的维护。
原脚本链接:https://gf.qytechs.cn/zh-CN/scripts/16607
原作者初学 JS,我就写了很多注释,希望能帮到他。
若其他人有不同需要的话,在此直接提供一份压缩版本,更新上的不便还请谅解。好在,下次更新应该要等到百度更新百度百科网站了。
// ==UserScript==
// @name 百度百科 - 将图片改为无水印版本
// @namespace RainSlide
// @version 1.3.1.3
// @description 本脚本为 百度百科 无水印图片查看 的无 jQuery 版本。
// @icon http://baidu.com/favicon.ico
// @match https://baike.baidu.com/picture/*
// @match http://baike.baidu.com/picture/*
// @match https://baike.baidu.com/historypic/*
// @match http://baike.baidu.com/historypic/*
// @match https://baike.baidu.com/pic/*
// @match http://baike.baidu.com/pic/*
// @match https://baike.baidu.com/picview/history/*
// @match http://baike.baidu.com/picview/history/*
// @run-at document-end
// @grant none
// ==/UserScript==
function(){var i="https://imgsrc.baidu.com/baike/pic/item/",t=document.getElementById("imgPicture"),e=new Map([[t,"src"],[document.querySelector("a.tool-button.origin"),"href"]]);function r(){var r=t.src.replace(/.*\//,i);console.log(r),e.forEach(function(t,e){e.getAttribute(t).startsWith(i)||e.setAttribute(t,r)})}r(),new MutationObserver(r).observe(t,{attributes:!0,childList:!1,subtree:!1})}();