-
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) · 659 Bytes
/
manifest.json
File metadata and controls
32 lines (32 loc) · 659 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
{
"manifest_version": 3,
"name": "Edu Wiz",
"version": "1.0",
"description": "Made by Running_Mate",
"permissions": [
"scripting",
"activeTab",
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"https://sdfedu.seoul.kr/*",
"http://localhost:5000/*"
],
"content_scripts": [
{
"matches": [
"https://sdfedu.seoul.kr/*"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
]
}