您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
本脚本为 百度百科 无水印图片查看 的修改版本。
当前为
// ==UserScript== // @name 百度百科 - 将图片改为无水印版本 // @namespace RainSlide // @version 2.0 // @description 本脚本为 百度百科 无水印图片查看 的修改版本。 // @icon https://baike.baidu.com/favicon.ico // @run-at document-end // @grant none // @match https://baike.baidu.com/pic/* // @match http://baike.baidu.com/pic/* // @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/picview/history/* // @match http://baike.baidu.com/picview/history/* // @match https://bkimg.cdn.bcebos.com/pic/* // @match http://bkimg.cdn.bcebos.com/pic/* // ==/UserScript== // https://bkimg.cdn.bcebos.com/pic/0823dd54564e9258dbbe38929382d158cdbf4ec7?x-bce-process=image/watermark,image_d2F0ZXIvYmFpa2U5Mg==,g_7,xp_5,yp_5 // https://bkimg.cdn.bcebos.com/pic/0823dd54564e9258dbbe38929382d158cdbf4ec7 // https://imgsrc.baidu.com/baike/pic/item/0823dd54564e9258dbbe38929382d158cdbf4ec7.jpg "use strict"; (() => { const checkHostname = url => url.hostname === "bkimg.cdn.bcebos.com"; const hasWatermark = url => url.search.includes("watermark"); const trimUrl = url => url.origin.concat(url.pathname); if (checkHostname(location)) { hasWatermark(location) && location.assign(trimUrl(location)); } else { const targetMap = new Map(); [ [ document.getElementById("imgPicture"), "src" ], [ document.querySelector('a.tool-button.origin'), "href" ] ].forEach( pair => pair[0] !== null && targetMap.set(...pair) ); targetMap.forEach( (prop, element) => { const replaceUrl = () => { if ( element[prop] !== "" ) { const url = new URL(element[prop]); if ( checkHostname(url) && hasWatermark(url) ) { element[prop] = trimUrl(url); } } }; replaceUrl(); new MutationObserver(replaceUrl).observe( element, { attributes: true, attributeFilter: [prop], } ); } ); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址