nicoadblock

By 22century Last update Jul 5, 2008 — Installed 1,196 times. Daily Installs: 3, 2, 2, 3, 2, 6, 3, 3, 3, 2, 3, 5, 3, 3, 2, 3, 3, 2, 2, 2, 2, 4, 2, 3, 3, 2, 3, 4, 3, 2, 3, 2
// ==UserScript==
// @name           nicoadblock
// @namespace      http://22century.cute.bz/
// @description    nicovideo advertisement blocker.
// @include        http://*.nicovideo.jp/*
// ==/UserScript==

(function(){
	var d = document;
	var style_add = d.createElement("style");
	style_add.type = "text/css";
	style_add.textContent = "div#banner,div#skyscraper_img,div[class*='ads_'],div[id*='_pc_'],img[width='468'],iframe[name='google_ads_frame']{display:none!important}";
	d.getElementsByTagName("head")[0].appendChild(style_add);
})();