blob: d479a8ce1dd6df92d7460f4ba127ceb7b3f254be (
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
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
body {
width: 240px;
padding: 12px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
font-size: 13px;
background: #1a1a1a;
color: #fff;
margin: 0;
}
h3 {
margin: 0 0 10px 0;
font-size: 14px;
color: #ff4444;
}
label {
display: flex;
align-items: center;
padding: 4px 0;
cursor: pointer;
}
label:hover {
background: #333;
}
label.sub {
padding-left: 20px;
font-size: 12px;
color: #aaa;
}
input[type="checkbox"] {
margin-right: 8px;
accent-color: #ff4444;
}
</style>
</head>
<body>
<h3>Unhook NG</h3>
<label>
<input type="checkbox" id="hideHomeFeed">
Hide Home Feed
</label>
<label class="sub">
<input type="checkbox" id="redirectToSubscriptions">
Redirect To Subscriptions
</label>
<label>
<input type="checkbox" id="hideVideoSidebar">
Hide Video Sidebar
</label>
<label class="sub">
<input type="checkbox" id="hideRecommended">
Hide Recommended
</label>
<label class="sub">
<input type="checkbox" id="hideLiveChat">
Hide Live Chat
</label>
<label class="sub">
<input type="checkbox" id="hidePlaylist">
Hide Playlist
</label>
<label class="sub">
<input type="checkbox" id="hideFundraiser">
Hide Fundraiser
</label>
<label>
<input type="checkbox" id="hideEndScreenCards">
Hide End Screen Cards
</label>
<label>
<input type="checkbox" id="hideShorts">
Hide Shorts
</label>
<label>
<input type="checkbox" id="hideComments">
Hide Comments
</label>
<label class="sub">
<input type="checkbox" id="hideProfilePhotos">
Hide Profile Photos
</label>
<label>
<input type="checkbox" id="hideMixes">
Hide Mixes
</label>
<label>
<input type="checkbox" id="hideMerch">
Hide Merch
</label>
<label>
<input type="checkbox" id="hideEventTickets">
Hide Event Tickets
</label>
<label>
<input type="checkbox" id="hideVideoInfo">
Hide Video Info
</label>
<label class="sub">
<input type="checkbox" id="hideButtonsBar">
Hide Buttons Bar
</label>
<label class="sub">
<input type="checkbox" id="hideChannel">
Hide Channel
</label>
<label class="sub">
<input type="checkbox" id="hideDescription">
Hide Description
</label>
<label>
<input type="checkbox" id="hideTopHeader">
Hide Top Header
</label>
<label class="sub">
<input type="checkbox" id="hideNotifications">
Hide Notifications
</label>
<label>
<input type="checkbox" id="hideExplore">
Hide Explore
</label>
<label>
<input type="checkbox" id="hideMoreFromYT">
Hide More from YouTube
</label>
<label>
<input type="checkbox" id="hideSubscriptions">
Hide Subscriptions
</label>
<script src="popup.js"></script>
</body>
</html>
|