-
Notifications
You must be signed in to change notification settings - Fork 0
/
adevarul.ro.user.js
28 lines (25 loc) · 1.06 KB
/
adevarul.ro.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// ==UserScript==
// @name adevarul.ro
// @namespace http://tampermonkey.net/
// @version 1.0
// @description remove crap
// @author You
// @match http*://*.adevarul.ro/*
// @include https://adevarul.ro
// ==/@require https://code.jquery.com/jquery-1.11.1.js
// @grant none
// ==/UserScript==
(function($) {
'use strict';
$("span:contains('realitatea.net')").parents("article").hide();
$("span:contains('click.ro')").parents("article").hide();
$("span:contains('gsp.ro')").parents("article").hide();
$("span:contains('wowbiz.ro')").parents("article").hide();
$("span:contains('gandul.info')").parents("article").hide();
$("span:contains('fanatik.ro')").parents("article").hide();
$("article.celebritati.entertainment, article.prosport").hide();
$("div:contains('wowbiz.ro')").parents(".sidebar-container").hide();
$("div:contains('clickpentrufemei.ro')").parents(".clickpentrufemei").hide();
$("div:contains('okmagazine.ro')").parents(".okmagazine").hide();
$("div.cross-gsp").hide();
})(jQuery);