forked from tryhardfifi/pronounce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
52 lines (40 loc) · 890 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
{
"manifest_version": 2,
"name": "Double-click pronounce",
"version": "2.5.1",
"description": "Never doubt how to pronounce a word. Better your spoken languages!",
"icons": {
"48": "icons/border-48.png"
},
"background": {
"persistent": false,
"scripts": [
"browser-polyfill.js"
]
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["browser-polyfill.js","pronounce.js"]
}
],
"options_ui": {
"page": "options.html"
},
"permissions": ["tabs","storage", "management"],
"chrome_url_overrides" : {
"newtab": "newtab.html"
},
"browser_specific_settings": {
"gecko": {
"id": "{f8716d82-2c5c-430d-b783-5473310342cf}"
}
},
"browser_action": {
"default_icon": {
"32": "icons/border-48.png"
},
"default_title": "Pronounce",
"default_popup": "options.html"
}
}