-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
54 lines (50 loc) · 860 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
51
52
53
54
{
"name": "SpeakIt!",
"version": "0.2.4",
"minimum_chrome_version": "14",
"default_locale": "en",
"description": "__MSG_desc__",
"background_page": "speakit.html",
"options_page": "options.html",
"icons":
{
"16": "small_icon.png",
"128": "images/icon.png"
},
"browser_action":
{
"default_title": "__MSG_title__",
"default_icon": "small_icon.png",
"default_popup": "popup.html"
},
"permissions":
[
"<all_urls>",
"contextMenus",
"ttsEngine",
"tts",
"tabs",
"https://*/*"
],
"tts_engine":
{
"voices":
[
{
"voice_name": "SpeakIt!",
"lang": "en-US",
"gender": "female",
"event_types": ["start", "marker", "end"]
}
]
},
"content_scripts":
[
{
"matches": ["<all_urls>", "https://*/*"],
"js": ["js/addSpeech.js"],
"all_frames": true,
"run_at": "document_end"
}
]
}