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
|
{
"manifest_version": 2,
"name": "Unhook NG",
"version": "1",
"description": "Hide YouTube related videos, shorts, comments, suggestions wall, homepage recommendations, trending, and other distractions.",
"icons": {
"32": "icons/unhook.png"
},
"permissions": [
"storage"
],
"browser_action": {
"default_icon": "icons/unhook.png",
"default_title": "Unhook NG",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*.youtube.com/*"],
"js": ["unhook.js"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "@unhookng",
"data_collection_permissions": {
"required": ["none"]
}
}
}
}
|