-
Notifications
You must be signed in to change notification settings - Fork 21
/
manifest.json
55 lines (47 loc) · 1.4 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
49
50
51
52
53
54
55
{
"manifest_version": 2,
"key": "mnlpghekblinohfbojnhfckdfmikanja",
"name": "StandNote",
"version": "1.0.0",
"description": "StandNote is your easy to use online meeting assistant that backs you up with automated meeting minutes for every conversation.",
"short_name": "StandNote",
"icons": {
"128": "assets/icon128.png",
"48": "assets/icon48.png",
"16": "assets/icon16.png"
},
"browser_action": {
"default_popup": "html/popup.html",
"default_icon": "assets/icon48.png"
},
"background": {
"scripts": [
"javascript/micPermission.js",
"javascript/azure-speech-to-text.js",
"javascript/microsoft.cognitiveservices.speech.sdk.bundle-min.js",
"javascript/eventPage.js"
],
"persistant": false
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["javascript/content.js"],
"css": ["css/content.css"]
}
],
"web_accessible_resources": ["assets/*"],
"content_security_policy": "script-src 'self' https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js; object-src 'self'",
"permissions": [
"storage",
"identity",
"<all_urls>",
"https://standnote.herokuapp.com/*",
"tabs",
"tabCapture"
],
"oauth2": {
"client_id": "337386111803-7o99c71aahdhtkffc5q0c316a4btgn48.apps.googleusercontent.com",
"scopes": ["https://www.googleapis.com/auth/userinfo.email"]
}
}