Greasy Fork

Greasy Fork is available in English.

百度百科 图册图片查看无水印图片

去除百度百科图册中的图片水印,查看原图时目标链接也是无水印版本

当前为 2021-07-24 提交的版本,查看 最新版本

// ==UserScript==
// @name         百度百科 图册图片查看无水印图片
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  去除百度百科图册中的图片水印,查看原图时目标链接也是无水印版本
// @author       Esgloamp
// @match        http*://baike.baidu.com/pic/*
// @icon         https://www.baidu.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    document.getElementById('imgPicture').addEventListener('load', () => {
        let currimg = document.getElementById("imgPicture");
        let nomarkUrl = currimg.getAttribute('src').split('?')[0];
        currimg.setAttribute('src', nomarkUrl);
        let srcImg = document.getElementsByClassName('tool-button origin'); // 右下角查看原图的目标链接也随着更改
        srcImg[0].setAttribute('href', nomarkUrl);
    });
})();