-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
39 lines (37 loc) · 1.12 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
{
"manifest_version": 3,
"name": "QuackTask",
"version": "1.0",
"description": "A Chrome extension that takes your Canvas tasks and uploads them into Google Tasks.",
"permissions": ["scripting", "activeTab", "storage", "identity"],
"host_permissions": [
"https://sit.instructure.com/*",
"https://www.googleapis.com/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": ["popup.js", "auth.js", "assignments.js", "ui.js"],
"matches": ["<all_urls>"]
}
],
"content_scripts": [
{
"matches": ["https://sit.instructure.com/*"],
"js": ["content.js"]
}
],
"oauth2": {
"client_id": "703082686303-1g2ro3u2p2d2ngh9e9t9evhqcqlfo8f1.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/tasks",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/userinfo.email"
]
}
}