-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmanifest.json
50 lines (45 loc) · 912 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
39
40
41
42
43
44
45
46
47
48
49
50
{
"manifest_version": 2,
"name": "Speak, Translate And See with AWS",
"description": "Use Amazon Web Services (AWS) AI Services (Amazon Polly, Translate and Rekognition) on the browser easily.",
"icons" : {
"16" : "images/ico-16.png",
"48" : "images/ico-48.png",
"128" : "images/ico-128.png"
},
"version": "1.0.2",
"permissions": [
"contextMenus",
"storage",
"https://*/*"
],
"background": {
"scripts": [
"aws-sdk-2.270.1.min.js",
"common.js",
"awsAIServices.js",
"background.js"
]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"css": [ "jquery-ui.css", "extension.css" ],
"js": [
"jquery.min.js",
"jquery-ui.min.js",
"common.js",
"content.js"
]
}
],
"web_accessible_resources": [
"images/*.png",
"*.html",
"*.js"
],
"browser_action" : {
"default_title" : "Set AWS Credentials",
"default_popup": "popup.html"
}
}