-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
38 lines (38 loc) · 881 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
{
"description": "Adds a button that shows Google Classroom To-do in the sidebar. ",
"name": "Google Classroom To-do Sidebar",
"manifest_version": 2,
"version": "1.1.0",
"permissions": [],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "icons/128.png",
"19": "icons/19.png",
"38": "icons/38.png",
"48": "icons/48.png"
},
"browser_action": {
"default_icon": {
"128": "icons/128.png",
"19": "icons/19.png",
"38": "icons/38.png",
"48": "icons/48.png"
},
"default_title": "Open Google Classroom To-do Sidebar"
},
"sidebar_action": {
"browser_style": false,
"default_title": "To-do",
"default_icon": {
"128": "icons/128.png",
"19": "icons/19.png",
"38": "icons/38.png",
"48": "icons/48.png"
},
"default_panel": "sidebar.html"
}
}