-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
35 lines (34 loc) · 932 Bytes
/
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
{
"manifest_version": 2,
"name": "Youtube Collections",
"short_name": "ytcollection",
"description": "Collections for Youtube. You know, like we used to have until it was removed for no reason.",
"version": "0.3",
"icons": {
"16": "collections-16.png",
"48": "collections-48.png",
"128": "collections-128.png"
},
"permissions": [
"https://www.youtube.com/",
"storage"
],
"web_accessible_resources": [
"page-request-inject.js",
"img/*",
"templates/*"
],
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"css": ["collections.css"],
"js": ["hashid.js","storage.js","template.js","page-request.js","common.js","guide.js"],
"run_at": "document_end"
},
{
"matches": ["https://www.youtube.com/subscription_manager*"],
"js": ["manager.js"],
"run_at": "document_end"
}
]
}