-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
32 lines (32 loc) · 871 Bytes
/
Copy pathmanifest.json
File metadata and controls
32 lines (32 loc) · 871 Bytes
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
{
"name": "なでしこーだー",
"version": "1.0.1",
"manifest_version": 3,
"icons": {
"128": "icon/icon128.png"
},
"description": "日本語プログラミング言語「なでしこ」でAtCoderの問題を提出するためのchrome拡張機能",
"content_scripts": [
{
"matches": [
"https://atcoder.jp/contests/*/tasks*",
"https://atcoder.jp/contests/*/submit*"
],
"js": [
"src/nako.js",
"src/utils.js",
"src/submit.js"
]
},
{
"matches": [
"https://atcoder.jp/contests/*/custom_test*"
],
"js": [
"src/nako.js",
"src/utils.js",
"src/code_test.js"
]
}
]
}