分类目录

链接

2020 年 6 月
1234567
891011121314
15161718192021
22232425262728
2930  

近期文章

热门标签

新人福利,免费薅羊毛

稿定设计去水印

// ==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); }); })();

Others 暂无评论 阅读(181)