-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (45 loc) · 1.27 KB
/
Copy pathmanifest.json
File metadata and controls
45 lines (45 loc) · 1.27 KB
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
{
"manifest_version": 3,
"name": "프로그래머스 오토커밋",
"version": "1.0.1",
"description": "프로그래머스에서 코드를 실행할 때마다 문제 정보와 코드, 실행 결과를 GitHub 저장소에 자동으로 커밋합니다.",
"permissions": ["storage"],
"host_permissions": [
"https://school.programmers.co.kr/*",
"https://api.github.com/*"
],
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"128": "icons/icon128.png",
"256": "icons/icon256.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://school.programmers.co.kr/learn/courses/*/lessons/*"],
"js": ["page-bridge.js"],
"world": "MAIN",
"run_at": "document_idle"
},
{
"matches": ["https://school.programmers.co.kr/learn/courses/*/lessons/*"],
"js": ["markdown.js", "content.js"],
"run_at": "document_idle"
}
],
"action": {
"default_popup": "popup.html",
"default_title": "프로그래머스 오토커밋",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"options_page": "options.html"
}