-
Notifications
You must be signed in to change notification settings - Fork 6
/
manifest.json
56 lines (48 loc) · 1 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
{
"description": "__MSG_extDescription__",
"manifest_version": 2,
"name": "__MSG_extName__",
"version": "0.0.28",
"homepage_url": "https://github.com/ettoolong/TTSFox",
"icons": {
"16": "icon/icon.svg",
"32": "icon/icon.svg",
"48": "icon/icon.svg",
"128": "icon/icon.svg"
},
"browser_specific_settings": {
"gecko": {
"id": "@ttsfox",
"strict_min_version": "57.0"
}
},
"author": "Ett Chung",
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_actionButtonTitle__",
"default_icon": "icon/icon.svg"
},
"commands": {
"speech": {
"description": "__MSG_actionButtonTitle__",
"suggested_key": {
"default": "Ctrl+Shift+V"
}
}
},
"permissions": [
"activeTab",
"storage",
"tabs",
"contextMenus"
],
"default_locale": "en",
"options_ui": {
"page": "options.html",
"open_in_tab": false,
"browser_style": true
}
}