-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
60 lines (60 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
55
56
57
58
59
60
{
"manifest_version": 3,
"name": "__MSG_ext_name__",
"short_name": "__MSG_ext_shortName__",
"version": "2.7.7",
"description": "__MSG_ext_description__",
"default_locale": "ko",
"browser_specific_settings": {
"gecko": {
"id": "cheese-knife@chatlink.app"
}
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"homepage_url": "https://www.chz.app/",
"permissions": [
"scripting",
"storage"
],
"host_permissions": [
"*://*.chzzk.naver.com/*"
],
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"web/*"
],
"matches": [
"*://*.chzzk.naver.com/*"
]
}
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"config.js",
"web/main.js"
],
"css": [
"web/main.css"
],
"matches": [
"*://*.chzzk.naver.com/*"
],
"exclude_globs": [
"*://api.chzzk.naver.com/*"
]
}
]
}