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
29
30
31
|
// ==UserScript==
// @name SMBC
// @include *://*.smbc-comics.com/*
// ==/UserScript==
/* ~/.config/qutebrowser/greasemonkey/smbc-comics.css.js :: */
GM_addStyle(`
body {
background: var(--color-bg) !important;
}
#mainwrap {
border: none !important;
background: none !important;
padding: 0px !important;
}
#comicleft {
float: none !important;
margin: auto !important;
}
#blogarea, #blogheader, #blogmsgmobile, #boardleader, #buythis,
#comicright, #commentarea, #comment-space, #footer, #header, #hw-jumpbar,
#midleader, #mobad1, #mobaftercomic, #mobfacebook, #mobilefooter,
#mobilemenu, #mobilepermalink, #mobtumblr, #mobtwitter,
#navtop + script + a, #permalink, #sharebar, #sharemob, .cc-tagline {
display: none !important;
}
`);
|