稿定设计去水印
// ==UserScript==
// @name 稿定设计去水印
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 稿定设计去水印
// @author You
// @match https://www.gaoding.com/*
// @grant none
// @require http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==
(function() {
'use strict';
// Your code here...
$(function(){
setInterval(function(){
if($('.editor-watermark')){
$('.editor-watermark').remove();
}
}, 1000);
});
})();