Greasy Fork

Greasy Fork is available in English.

哈哈删除广告 haha.mx

哈哈删除广告

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

// ==UserScript==
// @name 哈哈删除广告 haha.mx
// @description 哈哈删除广告
// @include     https://www.haha.mx/*
// @require     http://cdn.bootcss.com/jquery/1.11.3/jquery.js
// @grant       ao
// @version 1.0
// @namespace http://greasyfork.icu/users/25818
// ==/UserScript==

console.clear();
(function() {
  'use strict';
  
  function clearAD() {
    $(".joke-list-item-ad").remove();
    $(".anecdote-slider").remove();
  }
  setInterval(function() {
    clearAD();
  }, 1000);
   
})();

console.log('完成');