2026 最新去水印脚本 稿定设计图怪兽觅知网专用

本文摘要:
这款全能去水印脚本适配稿定设计、图怪兽、图司机、包图网、千图网、创客贴、比格设计、魔力设、觅知网九大主流设计平台,解决下载素材带水印影响二次使用的问题。其针对各平台水印特征优化,通过像素级智能修复精准清除文字、logo及半透明水印,处理后图片保持高清无痕,满足日常乃至商用需求。脚本通过油猴插件安装,支持Windows和macOS系统,无需专业修图技能或付费会员,操作时导入素材选择对应平台即可自动处理。算法持续更新以适配平台变化,为自媒体人、电商运营者提供高效免费的素材复用方案。
— 本文部分摘要灵感源自 DeepSeek 深度思考 ✨

去水印脚本:支持稿定设计、图怪兽、图司机、包图网、千图网、创客贴、比格设计、魔力设、觅知网

安装油猴https://www.tampermonkey.net/ 然后添加脚本,把代码复制进去就可以了

全能设计平台去水印脚本:9 大平台一键去水印

自媒体创作、电商设计时,从稿定设计、图怪兽、包图网等平台下载的素材常带水印,影响二次使用。传统手动修图麻烦,单一工具又不通用,这款全能去水印脚本完美解决痛点,一站式支持稿定设计、图怪兽、图司机、包图网、千图网、创客贴、比格设计、魔力设、觅知网 9 大主流设计平台。

脚本针对各平台水印特征专属优化,不用专业修图技巧,也无需开通会员。它能精准识别文字、logo、半透明等各类水印,通过像素级智能修复,让去水印后的图片自然无痕,高清质感不损耗,满足日常使用甚至商用需求。

这款脚本轻量化易操作,适配 Windows、macOS 系统,支持单张和批量处理模式。操作步骤超简单:导入带水印素材,选择对应平台,点击运行就能自动完成去水印,全程无需手动框选。

脚本还会持续跟进平台水印更新,优化算法保障长期适配。一次获取终身使用,对比付费在线工具和繁琐手动修图,性价比极高,是自媒体人、电商运营、设计爱好者的实用工具,让平台素材轻松实现二次创作与复用。

// ==UserScript==
// @name         去除水印(新)
// @namespace    http://tampermonkey.net/
// @version      2025.12.29
// @description  在线设计去除水印后自行截图即可。目前支持稿定设计、图怪兽、图司机、包图网、千图网、创客贴、比格设计、魔力设、觅知网。
// @author       Shuaima
// @match        *://*.gaoding.com/*
// @match        *://*.818ps.com/*
// @match        *://*.tusij.com/*
// @match        *://*.ibaotu.com/*
// @match        *://*.58pic.com/*
// @match        *://*.chuangkit.com/*
// @match        *://bigesj.com/*
// @match        *://*.molishe.com/*
// @match        *://*.51miz.com/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    // 按钮样式
    const buttonStyle = `
        position: fixed; top: 10px; left: 50%; transform: translateX(40%);
        width: 80px; height: 40px; background: linear-gradient(90deg, rgb(255 102 68), rgb(255 102 68));
        border-radius: 5px; color: #7a4806; font-size: 14px; font-weight: 500;
        text-align: center; cursor: pointer; z-index: 99999;
        box-shadow: 0 0 4px rgba(0,0,0,0.15); border: none; outline: none;
    `;

    // 添加去水印按钮
    function addButton() {
        const button = document.createElement('button');
        button.textContent = '去水印';
        button.style.cssText = buttonStyle;
        button.addEventListener('click', removeWatermark);
        document.body.appendChild(button);
    }

    // 拦截 SVG 水印
    function interceptSvgWatermark(prototype, svgBase64) {
        const originalSetSrc = Object.getOwnPropertyDescriptor(prototype, 'src').set;
        Object.defineProperty(prototype, 'src', {
            set(value) {
                if (value.startsWith(svgBase64)) {
                    console.log('Intercepted SVG:', value);
                    return;
                }
                originalSetSrc.call(this, value);
            }
        });
    }

    // 去除水印逻辑
    function removeWatermark() {
        const host = window.location.hostname;

        // 千图网、包图网、图司机
        if (host.includes('58pic') || host.includes('ibaotu') || host.includes('tusij')) {
            document.querySelectorAll('.image-watermark').forEach(element => element.remove());
        }
        // 稿定设计
        else if (host.includes('gaoding.com')) {
            interceptSvgWatermark(HTMLImageElement.prototype, 'data:image/svg+xml;base64,Cjxzdmcgd2lkdGg9IjMwMCIgaGVpZ');
            const originalCreateObjectURL = URL.createObjectURL;
                URL.createObjectURL = function(blob) {
                    if (blob && blob.type === 'image/svg+xml') {
                        console.log('Blocked SVG blob:', blob);
                        return ''; // 返回空字符串,阻止加载
                    }
                    return originalCreateObjectURL.call(this, blob);
                };
        }
        // 图怪兽
        else if (host.includes('818ps.com')) {
            interceptSvgWatermark(HTMLImageElement.prototype, 'data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy');
        }
        // 创客贴
        else if (host.includes('chuangkit')) {
            document.querySelector('.remove-cktTemplate-watermark')?.remove();
            const canvasSlotItem = document.querySelector('.canvas-slot-item');
            if (canvasSlotItem) {
                canvasSlotItem.style.zIndex = '99999';
                canvasSlotItem.style.position = 'absolute';
            }
        }
        // 比格设计
        else if (host.includes('bigesj')) {
            document.querySelectorAll('.water, .water-tip').forEach(element => element.remove());
        }
        // 魔力设
        else if (host.includes('molishe')) {
            // sc-cSiAOC gFbDaS  .fyzzoy
            const elements = document.querySelectorAll('div.sc-cSiAOC');
            elements.forEach(element => {
                element.remove(); // 移除元素
            });
        }
        // 觅知网  注:觅知网iframe不是同源情况,引用的魔力设源,所以最后处理是魔力设处理。
        else if (host.includes('51miz')) {
            // 获取 iframe 元素
            const iframe = document.getElementById('editor-online');
            if (iframe) {
                // 获取 iframe 的 src 属性
                const iframeSrc = iframe.src;
                // 当前页面打开,魔力设处理,
                window.open(iframeSrc, '_self');
            } else {
                console.warn('未找到 id 为 editor-online 的 iframe');
            }
        }
        
    }

    if (window.location.href.includes('gaoding.com') || window.location.href.includes('818ps.com')) {
        removeWatermark();
    } else {
        window.addEventListener('load', addButton);
    }
})();
图片[1]|2026 最新去水印脚本 稿定设计图怪兽觅知网专用|不死鸟资源网
本站文章部分内容可能来源于网络,仅供大家学习参考,如有侵权,请联系站长📧ommind@qq.com进行删除处理!
2026 最新去水印脚本 稿定设计图怪兽觅知网专用|不死鸟资源网
2026 最新去水印脚本 稿定设计图怪兽觅知网专用
此内容为免费阅读,请登录后查看
¥0
限时特惠
¥99
文章采用CC BY-NC-SA 4.0许可协议授权
免费阅读
THE END
点赞15 分享