Skip to content

Instantly share code, notes, and snippets.

@gurugray
Created January 21, 2012 22:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gurugray/1654349 to your computer and use it in GitHub Desktop.
Save gurugray/1654349 to your computer and use it in GitHub Desktop.
// 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