-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
48 lines (44 loc) · 1.21 KB
/
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
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "Feedback Prototype",
"description": "Suggests previous gradescope comments for feedback",
"version": "8.3",
"browser_action": {
"default_popup": "popup.html"
},
"commands": {
"toggle-suggestion-view": {
"suggested_key": {
"default": "Ctrl+K",
"mac": "Command+K"
},
"description": "Toggle suggestion view"
}
},
"permissions": [
"activeTab",
"storage",
"identity",
"https://spreadsheets.google.com/feeds/"
],
"content_scripts": [
{
"matches": ["https://gradescope.com/*/questions/*/submissions/*/grade",
"https://www.gradescope.com/courses/*/questions/*/submissions/*/grade"],
"js": ["jquery-2.2.2.min.js", "content_script.js"],
"css": ["suggestions.css"]
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"oauth2": {
"client_id": "429303545529-bag73oigjvq64981cd2f0rvvqbbekbqe.apps.googleusercontent.com", // debug
//"client_id": "429303545529-hq5ehbbgd6quoa2qneg2q3icqfjj50kg.apps.googleusercontent.com", //published
"scopes": [
"https://spreadsheets.google.com/feeds"
]
},
"web_accessible_resources": ["button.png"]
}