Greasy Fork is available in English.
稿定设计去水印插件
当前为
// ==UserScript==
// @name 最新稿定设计去水印
// @namespace gaodingsheji
// @version 0.5
// @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();
})();