forked from OsaSoft/youtube-better-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
54 lines (54 loc) · 1.09 KB
/
manifest.json
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
{
"description": "Make navigating YouTube's subscription grid easier by hiding watched videos",
"short_name": "Better Subs",
"manifest_version": 2,
"name": "Better Subscriptions for YouTube™",
"version": "0.13.1.1",
"applications": {
"gecko": {
"id": "{5dc6dafa-584e-424a-bf90-1d1d8cfa3caa}"
}
},
"icons": {
"48": "icons/ic_video_library_black_48dp_1x.png"
},
"developer": {
"name": "Oscar Hernandez",
"url": "https://github.com/OsaSoft"
},
"web_accessible_resources": [
"images/*"
],
"permissions": [
"*://*.youtube.com/*",
"storage",
"unlimitedStorage"
],
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"util.js",
"common.js",
"settingsLoader.js",
"queries.js",
"subs-ui.js",
"subs.js",
"vid.js",
"pageHandler.js"
],
"css": [
"common.css",
"subs.css"
]
}
],
"background": {
"scripts": ["pages/background.js"]
},
"options_ui": {
"page": "pages/settings/settings.html"
}
}