-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
60 lines (60 loc) · 1.74 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": "알고노트 (AlgoNote)",
"description": "편리하게 알고리즘 오답노트를 작성해보세요.",
"homepage_url": "https://algnote.duckdns.org/",
"version": "1.4.1",
"author": "euny0ung",
"content_scripts": [
{
"matches": ["https://www.acmicpc.net/*"],
"js": ["scripts/parsing.js", "scripts/util.js", "scripts/baekjoon.js"],
"type": "module",
"run_at": "document_idle"
},
{
"matches": ["https://algnote.duckdns.org/*"],
"js": ["scripts/algonote.js"],
"type": "module",
"run_at": "document_idle"
}
],
"background": {
"service_worker": "background/background.js",
"type": "module"
},
"icons": {
"16": "images/logo.png",
"32": "images/logo.png",
"48": "images/logo.png",
"128": "images/logo.png"
},
"action": {
"default_icon": "images/logo.png",
"default_title": "AlgoNote",
"default_popup": "popup/popup.html"
},
"permissions": [
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"cookies",
"notifications",
"storage"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset",
"enabled": true,
"path": "rules.json"
}
]
},
"host_permissions": ["https://www.acmicpc.net/", "https://solved.ac/api/v3/*", "https://algnote.duckdns.org/*"],
"web_accessible_resources": [
{
"matches": ["<all_urls>"],
"resources": ["images/detail_logo.png", "popup/popup.html"]
}
]
}