forked from ken107/read-aloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
82 lines (80 loc) · 2.24 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"manifest_version": 2,
"name": "__MSG_extension_name__",
"short_name": "__MSG_extension_short_name__",
"description": "__MSG_extension_description__",
"version": "1.33.0",
"default_locale": "en",
"browser_action": {
"default_icon": "img/icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "img/icon-16.png",
"48": "img/icon-48.png",
"128": "img/icon.png"
},
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnuixucDtRgOw5uj5Bj8e+mAOxk2JAe0soL61VPOJz49awD8TGg4bUedgPkwHlLFpN1YayanQPOixIa+ePnSgSaXiV0SSdKYp4f1SUDGf1Z9Q7Ya+onaLN6aAcv7HAUQ9+JQK8aPNIyMHRm/Clx8zjwbILXzILbmuMvkRva7A78k0HULb+LxNGMeV9F7Q0U8WdZrfS2VNBpDVnDqGqVL93TDz1UsTvaA+uX0S5ZeXeZIwOzUMsuyiSBMPoQC5cUxszmJVtjj92EY1/AonZr22Cp8J5KBiCYJBsJqQ+Dt15cXz3gtCkBbChdlNbG8pLDneDNmEdF8EIVrziO346+qU0QIDAQAB",
"oauth2": {
"client_id": "311515340069-gr48lfk7ufpg8ath9qkfsatq60tr6147.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email",
"https://www.googleapis.com/auth/userinfo.profile",
"https://www.googleapis.com/auth/chromewebstore.readonly"
]
},
"permissions": [
"activeTab",
"contextMenus",
"identity",
"storage",
"tts",
"ttsEngine",
"https://translate.google.com/"
],
"optional_permissions": [
"tabs",
"webRequest",
"webNavigation",
"http://*/",
"https://*/",
"file://*/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'",
"background": {
"scripts": [
"js/defaults.js",
"js/messaging.js",
"js/google-translate.js",
"js/aws-sdk.js",
"js/tts-engines.js",
"js/speech.js",
"js/document.js",
"js/events.js"
],
"persistent": false
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"commands": {
"play": {
"suggested_key": {"default": "Alt+P"},
"description": "play/pause"
},
"stop": {
"suggested_key": {"default": "Alt+O"},
"description": "stop"
},
"forward": {
"suggested_key": {"default": "Alt+Period"},
"description": "forward"
},
"rewind": {
"suggested_key": {"default": "Alt+Comma"},
"description": "rewind"
}
}
}