// ==UserScript== // @name 标小智LOGO神器编辑界面去水印 // @namespace https://www.logosc.cn // @version 0.2 // @description 需手动截图 // @author shxuai // @match https://www.logosc.cn/edit* // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw== // @grant none // @run-at document-idle // @license 版权没有,违者不究 // @require https://code.jquery.com/jquery-3.1.1.min.js // @downloadURL none // ==/UserScript== /* globals jQuery, $, waitForKeyElements */ this.$ = this.jQuery = jQuery.noConflict(true); window.onload = function() { 'use strict'; $("rect.watermarklayer") .remove(); $('.display-action--preview').click(function() { $("rect.watermarklayer").remove(); }); }