-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
93 lines (93 loc) · 2.49 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "NKLCBHub(네카라쿠배 허브)",
"description": "백준 온라인 저지(BOJ)의 문제를 Github에 쉽게 업로드할 수 있습니다.",
"version": "0.0.9",
"manifest_version": 3,
"permissions": [
"tabs",
"activeTab",
"storage",
"unlimitedStorage",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess"
],
"icons": {
"16": "thumbnail.png",
"32": "thumbnail.png",
"48": "thumbnail.png",
"64": "thumbnail.png",
"128": "thumbnail.png"
},
"background": {
"service_worker": "background.js"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset",
"enabled": true,
"path": "rules.json"
}
]
},
"host_permissions": [
"https://www.acmicpc.net/",
"https://github.com/"
],
"action": {
"default_title": "Baekjoon Hub",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"https://github.com/*"
],
"js": [
"scripts/utils.js",
"scripts/Github.js",
"scripts/authorize.js"
],
"run_at": "document_idle"
},
{
"matches": [
"https://www.acmicpc.net/*"
],
"css":[
"css/modal.css"
],
"js": [
"library/jquery-3.6.3.min.js",
"library/bootstrap-4.4.1.js",
"library/bstreeview.min.js",
"scripts/utils.js",
"scripts/Github.js",
"scripts/authorize.js",
"scripts/storage.js",
"scripts/baekjoon/variable.js",
"scripts/baekjoon/directory.js",
"scripts/baekjoon/modal.js",
"scripts/baekjoon/baekjoon.js",
"scripts/baekjoon/parse.js",
"scripts/baekjoon/api.js",
"scripts/baekjoon/uploadfunctions.js"
],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"library/jquery-3.3.1.min.js",
"popup.html",
"popup.js",
"welcome.html",
"welcome.js"
]
}
]
}