forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
49 lines (42 loc) · 806 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
{
"name": "Speak Selection",
"version": "1.1",
"description": "Speaks the current selection out loud.",
"permissions": [
"<all_urls>",
"tts",
"tabs"
],
"background": {
"scripts": [
"keycodes.js",
"tabs.js",
"background.js"
]
},
"browser_action": {
"default_icon": "SpeakSel19.png",
"default_title": "Speak Selection"
},
"options_page": "options.html",
"minimum_chrome_version": "14",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"all_frames": true,
"js": [
"keycodes.js",
"content_script.js"
]
}
],
"icons": {
"16": "SpeakSel16.png",
"48": "SpeakSel48.png",
"128": "SpeakSel128.png",
"256": "SpeakSel256.png"
},
"manifest_version": 2
}