Last active
August 29, 2015 13:57
-
-
Save ap-Codkelden/9871895 to your computer and use it in GitHub Desktop.
Juick Yandex Ads Hide
This file contains hidden or 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
// ==UserScript== | |
// @name Juick Yandex Ads Hide | |
// @namespace ads | |
// @version 0.1 | |
// @description removes empty rectangle which contain ugly ads | |
// @match http://juick.com/* | |
// @copyright @ap-Codkelden, 2014 | |
// ==/UserScript== | |
var YandexAds = document.getElementById('yandex_ad_728'); | |
if (YandexAds) { | |
YandexAds.parentNode.removeChild(YandexAds); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment