// ==UserScript== // @name 关闭115右下角广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 关闭115右下角浮动广告 // @author Ashin // @require http://libs.baidu.com/jquery/2.0.0/jquery.min.js // @match *://v.anxia.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=greasyfork.org // @license Ashin // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(function(){ var floatAd = $("#js_common_mini-dialog"); floatAd.remove(); }); })();