Greasy Fork

Greasy Fork is available in English.

MangaPark Ad Remover

Removes the "popup" divs

当前为 2017-12-31 提交的版本,查看 最新版本

// ==UserScript==
// @name     MangaPark Ad Remover
// @author  sm00nie
// @version  1.00
// @description Removes the "popup" divs
// @grant    none
// @match http://*.mangapark.me/*
// @require http://code.jquery.com/jquery-latest.js
// @namespace http://greasyfork.icu/users/165048
// ==/UserScript==
$(function() {
  $('*[class^="kiwi"]').remove();
});