-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtube.css
115 lines (99 loc) · 2.22 KB
/
youtube.css
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
/* ==UserStyle==
@name YouTube Blocker
@namespace youtube-blocker
@version 1.1.0
@description Make YouTube less addictive on Mobile, hide Shorts, Home, and Channel views.
@author konsuko
==/UserStyle== */
@-moz-document domain("youtube.com"),
domain("m.youtube.com") {
/* Hide the Shorts button */
.shorts-button,
.pivot-shorts {
display: none;
}
/* Hide the Home button */
.home-button,
.pivot-w2w {
display: none;
}
#header-bar {
display: none;
}
[role=tablist] {
display: none;
}
.watch-below-the-player {
display: none;
}
}
@document url("https://www.youtube.com/"),
url("https://m.youtube.com/") {
body {
display: none;
}
#header-bar {
display: none;
}
[role=tablist] {
display: none;
}
.watch-below-the-player {
display: none;
}
}
@document url("https://www.youtube.com/watch"),
url("https://m.youtube.com/watch") {
body {
display: block;
}
#header-bar {
display: none;
}
[role=tablist] {
display: none;
}
.watch-below-the-player {
display: none;
}
}
/* @-moz-document url-prefix("https://www.youtube.com/feed/subscriptions"), */
/* url-prefix("https://m.youtube.com/feed/subscriptions") { */
/* body { */
/* display: none; */
/* } */
/**/
/* #header-bar { */
/* display: none; */
/* } */
/**/
/* [role=tablist] { */
/* display: none; */
/* } */
/**/
/* .watch-below-the-player { */
/* display: none; */
/* } */
/* } */
/* @-moz-document url-prefix("https://www.youtube.com/channel/"), */
/* url-prefix("https://www.youtube.com/c/"), */
/* url-prefix("https://www.youtube.com/user/"), */
/* url-prefix("https://m.youtube.com/channel/"), */
/* url-prefix("https://m.youtube.com/c/"), */
/* url-prefix("https://m.youtube.com/user/") { */
/* body { */
/* display: none; */
/* } */
/**/
/* #header-bar { */
/* display: none; */
/* } */
/**/
/* [role=tablist] { */
/* display: none; */
/* } */
/**/
/* .watch-below-the-player { */
/* display: none; */
/* } */
/* } */