-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
31 lines (31 loc) · 991 Bytes
/
manifest.json
File metadata and controls
31 lines (31 loc) · 991 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
{
"name": "CourseHub",
"description": "Chrome extension that lets you see what courses your friends are taking",
"version": "1.0",
"manifest_version": 3,
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"storage",
"activeTab",
"scripting",
"identity",
"tabs"
],
"host_permissions": [
"http://localhost:3000/*"
],
"action": {
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://my.usc.edu/"],
"js": [
"js/schools/usc/parse-classes.js"
]
}
],
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAhXJ7Nd/ygN/l4Tk4cq6c/7v8YZAIdvt/4IleO3CNhL4WAIXTWp7BCneHsPjzGsQb4QHnomWKw+seCS6VDxeTvKoWJHuZV/qY9HI3C5XVQnJrEzGekb++HBkolRSB7L65wuNHhkcuK1FQheWuX8Go2R2ZbZObDoxifUc69MsVMfPBJ3TqGZvfsA4RormA05kYanoLQCbx5unx2kwHq2zDG9iXr+fiO4TR07LKJVKCeXr+2s0069KCO5/UCZb2ABbvtu1j8ebvS050JlUq6sejVniFjecWqOMpTsnfsJc6sgaRfuGfSV+DpAruNDiL3PkV92ooLay+qzCo62w5H9AkNQIDAQAB"
}