Greasy Fork

Greasy Fork is available in English.

删除傲游哈哈广告 haha.mx

删除哈哈广告

当前为 2019-03-19 提交的版本,查看 最新版本

// ==UserScript==
// @name 删除傲游哈哈广告 haha.mx
// @description 删除哈哈广告
// @include     https://www.haha.mx/*
// @include     https://www.hahamx.cn/*
// @require     http://cdn.bootcss.com/jquery/1.11.3/jquery.js
// @grant       all
// @version 1.02
// @namespace http://greasyfork.icu/zh-CN/users/270812-lakshyayi
// ==/UserScript==

console.clear();
(function() {
  'use strict';
  
  function clearAD() {
    $(".joke-list-item-ad").remove();
    $(".anecdote-slider").remove();
    $(".float-left-ad").remove();

  }
  setInterval(function() {
    clearAD();
  }, 1000);
   
})();

console.log('完成');