稿定图片去水印保存

稿定工作台图片下载

// ==UserScript==
// @name         稿定图片去水印保存
// @namespace    http://tampermonkey.net/
// @version      2.0
// @description  稿定工作台图片下载
// @author       去水印无痕大师
// @match        https://*.818ps.com/*
// @match        https://*.eqxiu.com/*
// @match        https://*.chuangkit.com/*
// @match        https://bigesj.com/*
// @match        https://*.gaoding.com/*
// @match        https://*.focodesign.com/*
// @match        https://www.isheji.com/*
// @match        https://www.logosc.cn/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=focodesign.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    function downloadImg() {
        alert('脚本已经去不了水印了,我目前也解决不了这个问题,感谢您的使用,谢谢!')
    }

    function addTool() {
        const button = document.createElement('button')
        button.style.position = 'absolute'
        button.style.zIndex = '999'
        button.style.top = '0px'
        button.style.left = '100px'
        button.style.width = '100px'
        button.style.height = '32px'
        button.style.fontSize = '16px'
        button.style.background = '#FFC107'
        button.innerText = '已失效了'
        document.body.append(button)
        button.onclick = downloadImg
    }
    addTool()
    // Your code here...
})();