forked from meeeejin/srtmacro
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
53 lines (53 loc) · 1014 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"manifest_version": 3,
"name": "SRT Macro",
"description": "SRT \uc790\ub3d9 \uc608\uc57d \ub9e4\ud06c\ub85c",
"version": "1.0.1",
"permissions": [
"notifications",
"storage"
],
"host_permissions": [
"https://etk.srail.kr/"
],
"icons": {
"128": "images/icon128.png"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"jquery-1.11.0.min.js",
"content.js"
],
"matches": [
"https://etk.srail.kr/*"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"inject.js",
"images/btn_start.png",
"images/btn_stop.png",
"assets/tada.mp3"
],
"matches": [
"<all_urls>"
]
}
],
"options_ui": {
"page": "options.html"
},
"options_page": "options.html",
"content_security_policy": {},
"host_permissions": [
"https://etk.srail.kr/"
]
}