-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
executable file
·49 lines (49 loc) · 1.06 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
{
"manifest_version": 3,
"version": "25.1.14",
"minimum_chrome_version": "100",
"name": "Comments Search for Youtube",
"description": "Search youtube comments by keywords.",
"icons": {
"32": "/assets/icon32.png",
"128": "/assets/icon.png"
},
"permissions": [
"storage",
"scripting",
"alarms"
],
"host_permissions": [
"https://www.youtube.com/*"
],
"externally_connectable": {
"matches": [
"https://api.lett.app/*"
]
},
"content_scripts": [
{
"run_at": "document_idle",
"matches": [
"https://www.youtube.com/*"
],
"js": [
"/js/content.js"
]
}
],
"background": {
"service_worker": "/js/worker.js"
},
"web_accessible_resources": [
{
"resources": [
"/html/*"
],
"matches": [
"https://www.youtube.com/*"
]
}
],
"action": {}
}