adsRemove-cool18
// ==UserScript==
// @name adsRemove-cool18
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description adsRemove-cool18
// @author cool18.com
// @match *://www.cool18.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
// https://www.cool18.com/bbs/index.php
GM_addStyle(`
div.ad_float {
display: none !important;
}
#site_info, #pub_info, div[class^="adv-"], iframe {
display: none !important;
}
`);
// https://www.cool18.com/bbs/index.php?app=forum&act=threadview&tid=14107301
})();