RemoveFZDM

去除风之动漫广告

// ==UserScript==
// @name         RemoveFZDM
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  去除风之动漫广告
// @author       Stevaly
// @match        https://*.fzdm.com/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var xuanfu = $('#xuanfu_news_id');
    if(xuanfu.lenght=1){
    xuanfu.remove();
    }
    // Your code here...
})();