-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
27 lines (27 loc) · 767 Bytes
/
manifest.json
File metadata and controls
27 lines (27 loc) · 767 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
{
"manifest_version": 3,
"name": "프로그래머스 가림판",
"version": "1.3.0",
"description": "Hide specific elements on Programmers to enhance competitive programming skill.",
"permissions": ["activeTab", "scripting", "storage"],
"host_permissions": ["https://school.programmers.co.kr/*"],
"action": {
"default_popup": "popup.html",
"default_icon": "images/icon.png"
},
"content_scripts": [
{
"matches": ["https://school.programmers.co.kr/learn/challenges*"],
"js": ["content.js"],
"run_at": "document_start"
},
{
"matches": ["https://school.programmers.co.kr/learn/courses/*"],
"js": ["lesson.js"],
"run_at": "document_start"
}
],
"icons": {
"128": "images/icon.png"
}
}