-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
49 lines (49 loc) · 999 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": "__MSG_appName__",
"version": "0.0.1",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon-16.png",
"128": "images/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/chromereload.js",
"scripts/background.js"
],
"persistent": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["scripts/cscript.js"],
"match_about_blank": true,
"all_frames":true
}
],
"permissions": [
"background",
"tabs",
"tts",
"contextMenus"
],
"page_action": {
"default_icon": {
"16": "images/icon-19.png",
"19": "images/icon-19.png",
"38": "images/icon-38.png"
},
"default_title": "GC-Speak",
"default_popup": "popup.html"
},
"commands": {
"toggle-tts": {
"suggested_key": {
"default": "Ctrl+Shift+Z"
},
"description": "Start or Stop Speaking"
}
}
}