-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
41 lines (36 loc) · 914 Bytes
/
manifest.json
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
{
"manifest_version": 2,
"name": "StudEaz for Google Classroom",
"version": "1.3",
"description": "Get rid of all the hassle of manually downloading materials from Google Classroom. Download multiple documents in a few clicks.",
"permissions":
[
"activeTab"
],
"content_scripts":
[
{
"matches":
[
"https://classroom.google.com/*",
"http://classroom.google.com/*"
],
"js":
[
"content.js"
]
}
],
"icons":
{
"16": "assets/icon16.png",
"48": "assets/icon48.png",
"128": "assets/icon128.png"
},
"browser_action":
{
"default_icon": "assets/icon16.png",
"default_popup": "pop.html",
"default_title": "StudEaz for Google Classroom"
}
}