2023最新稿定设计去水印

稿定设计去水印插件

目前为 2024-08-01 提交的版本。查看 最新版本

// ==UserScript==
// @name         2023最新稿定设计去水印
// @namespace    gaodingsheji
// @version      0.4
// @description  稿定设计去水印插件
// @author       pachyming
// @match        https://www.gaoding.com/editor/design?*
// @match        https://www.focodesign.com/editor/design?*
// @match        https://www.focodesign.com/editor/odyssey?template_id=*
// @grant        none
// @license      Creative Commons (CC)
// ==/UserScript==

(function() {
    'use strict';

    // 直接添加工具按钮
    function downloadImg() {
        alert('一键下载保存功能,目前仅供添加了博主微信的粉丝宝宝。请加微missjhf获取最新插件');
    }

    function addTool() {
        const button = document.createElement('button');
        button.style.position = 'absolute';
        button.style.zIndex = '999';
        button.style.top = '28px';
        button.style.left = '800px';
        button.style.width = '100px';
        button.style.height = '32px';
        button.style.fontSize = '16px';
        button.style.background = '#FF00FF';
        button.innerText = '下载图片';
        document.body.append(button);
        button.onclick = downloadImg;
    }

    addTool();
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址