blob: e52987ab3ee7ff843102e275a36cee76a476881f (
plain)
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
|
// ==UserScript==
// @name Fandom
// @include *://*.fandom.com/*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/fandom.css.js :: */
GM_addStyle(`
div[itemprop=video],
#WikiaBar,
#mixed-content-footer,
.bottom-ads-container,
.fandom-sticky-header.is-visible,
.page__right-rail,
.top-ads-container {
display: none !important;
}
.main-container {
background: #ffffff !important;
}
body.theme-fandomdesktop-dark .main-page .mcwiki-header {
background: none !important;
border: none !important;
}
`);
|