blob: 723a7e4b6e1e614a72122a7f49ad76420d6b59b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// ==UserScript==
// @name Ars Technica
// @include *://arstechnica.com/*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/arstechnica.css.js :: */
GM_addStyle(`
.ad.ad.ad, .ad_wrapper, .ad-wrapper {
display: none !important;
}
.listing-top.with-feature .article.top-feature figure .listing,
.listing-top.with-feature .article.top-latest figure .listing,
.listing-top.with-feature .article figure .listing,
.listing-earlier .article figure .listing,
.listing-latest .article figure .listing,
.listing-rest .article figure .listing,
.with-xrail .xrail .featured-video .video-thumbnail {
background: none;
}
`);
|