Created
January 21, 2012 22:52
-
-
Save gurugray/1654349 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ad-block for EX.ua | |
// version 0.2 BETA! | |
// 2012-01-22 | |
// | |
// ==UserScript== | |
// @name Ad-BlockEx.ua | |
// @namespace http://gurugray.ru | |
// @description do not show ADs on EX.ua | |
// @include http://www.ex.ua | |
// @include http://www.ex.ua/* | |
// ==/UserScript== | |
st = document.createElement('style'); | |
st.innerText = '#ad_block, #ad_block_1, #index_box, #announce{display: none !important};'; | |
document.getElementsByTagName('body')[0].appendChild(st); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment