-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
executable file
·41 lines (41 loc) · 938 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
{
"name": "BabelFrog",
"version": "0.0.9",
"manifest_version": 2,
"description": "Helps you learn a new language by translating selected text",
"homepage_url": "http://github.com/dergachev/babelfrog",
"icons": {
"16": "icons/frog16.png",
"48": "icons/frog48.png",
"128": "icons/frog128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"src/options_custom/lib/store.js",
"src/bg/background.js"
],
"persistent": false
},
"options_page": "src/options_custom/index.html",
"browser_action": {
"default_icon": {
"19": "icons/frog19.png",
"38": "icons/frog38.png"
},
"default_title": "BabelFrog"
},
"permissions": [
"activeTab",
"contextMenus",
"https://translate.google.com/*"
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+E",
"mac": "Command+E"
}
}
}
}