新图网预览图片去水印

Remove !con and !ys from image URLs on ixintu.com

// ==UserScript==
// @name         新图网预览图片去水印
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Remove !con and !ys from image URLs on ixintu.com
// @author       www.z-l.top
// @match        https://ixintu.com/*
// @icon         https://api.iowen.cn/favicon/ixintu.com.png
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // 获取所有图片元素
    const images = document.querySelectorAll('img');

    // 循环遍历每个图片元素
    images.forEach(image => {
        // 获取图片链接
        let imageUrl = image.getAttribute('src');

        // 检查链接是否包含"!con""!con0"或"!ys",如果包含则去除
        if (imageUrl.includes('!con0')) {
            imageUrl = imageUrl.replace('!con0', '');
            image.setAttribute('src', imageUrl);
        }
                if (imageUrl.includes('!con1')) {
            imageUrl = imageUrl.replace('!con1', '');
            image.setAttribute('src', imageUrl);
        }
              if (imageUrl.includes('!con')) {
            imageUrl = imageUrl.replace('!con', '');
            image.setAttribute('src', imageUrl);
        }

        if (imageUrl.includes('!ys')) {
            imageUrl = imageUrl.replace('!ys', '');
            image.setAttribute('src', imageUrl);
        }
    });
})();