-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
43 lines (43 loc) · 1.43 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
{
"action": {
"default_icon": {
"128": "assets/images/icons/logo-ycs-128.png",
"16": "assets/images/icons/logo-ycs-16.png",
"24": "assets/images/icons/logo-ycs-24.png",
"32": "assets/images/icons/logo-ycs-32.png",
"48": "assets/images/icons/logo-ycs-48.png"
},
"default_popup": "browser-action/baction.html",
"default_title": "YouTube Comment Search"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [ {
"css": [ "content-scripts/style.css" ],
"js": [ "content-scripts/cscripts.js" ],
"matches": [ "*://*.youtube.com/*" ],
"run_at": "document_idle"
} ],
"default_locale": "en",
"description": "__MSG_ycs_description__",
"host_permissions": [ "*://*.youtube.com/*" ],
"icons": {
"128": "assets/images/icons/logo-ycs-128.png",
"16": "assets/images/icons/logo-ycs-16.png",
"24": "assets/images/icons/logo-ycs-24.png",
"32": "assets/images/icons/logo-ycs-32.png",
"48": "assets/images/icons/logo-ycs-48.png"
},
"manifest_version": 3,
"minimum_chrome_version": "88",
"name": "__MSG_ycs_name__",
"options_page": "options/options.html",
"permissions": [ "storage", "scripting" ],
"short_name": "YCS (Cont.)",
"version": "1.3.3",
"web_accessible_resources": [ {
"matches": [ "*://*.youtube.com/*" ],
"resources": [ "web-resources/*.js" ]
} ]
}