-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
58 lines (58 loc) · 1.73 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
{
"manifest_version": 3,
"name": "Smart Entry",
"version": "0.0.0",
"icons": {
"32": "assets/images/icons/Sentry-32px-icon-color.png",
"48": "assets/images/icons/Sentry-48px-icon-color.png",
"64": "assets/images/icons/Sentry-64px-icon-color.png",
"96": "assets/images/icons/Sentry-96px-icon-color.png",
"128": "assets/images/icons/Sentry-128px-icon-color.png"
},
"description": "Entry의 다용도 기능 확장 프로그램입니다.",
"content_scripts": [
{
"run_at": "document_idle",
"js": [
"src/workspace/js/loader.ts"
],
"matches": [
"https://playentry.org/ws/*",
"https://playentry.org/iframe/*"
]
}
],
"background": {
"service_worker": "src/background/main.ts"
},
"action": {
"default_popup": "src/popup/html/main.html",
"default_icon": {
"32": "assets/images/icons/Sentry-32px-icon-color.png",
"48": "assets/images/icons/Sentry-48px-icon-color.png",
"64": "assets/images/icons/Sentry-64px-icon-color.png",
"96": "assets/images/icons/Sentry-96px-icon-color.png",
"128": "assets/images/icons/Sentry-128px-icon-color.png"
}
},
"web_accessible_resources": [
{
"resources": [
"assets/images/*"
],
"matches": [
"https://playentry.org/*"
]
}
],
"permissions": [
"scripting",
"tabs",
"activeTab",
"storage"
],
"host_permissions": [
"https://playentry.org/ws/*",
"https://playentry.org/iframe/*"
]
}