-
Notifications
You must be signed in to change notification settings - Fork 10
/
manifest_desktop.json
56 lines (56 loc) · 1.3 KB
/
manifest_desktop.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
{
"name": "__MSG_appName__",
"version": "2.3.1",
"homepage_url": "https://github.com/andreicristianpetcu/google_translate_this",
"manifest_version": 2,
"description": "__MSG_appDescription__",
"icons": {
"16": "images/icon-16.png",
"48": "images/icon-48.png",
"96": "images/icon-96.png",
"128": "images/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts/StorageService.js",
"scripts/background.js"
]
},
"permissions": [
"contextMenus",
"tabs",
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"cookies",
"storage",
"webNavigation"
],
"browser_action": {
"default_title": "Translate This Page"
},
"page_action": {
"default_icon": "images/icon-128.png",
"browser_style": true,
"default_title": "Translate this page"
},
"commands": {
"translate-current-page": {
"suggested_key": {
"default": "Alt+Shift+P"
},
"description": "Translate current domain"
}
},
"options_ui": {
"page": "options/options.html"
},
"applications": {
"gecko": {
"id": "{e34d5840-6b3b-49d8-92c2-9696798c4e2a}",
"update_url": "https://raw.githubusercontent.com/andreicristianpetcu/google_translate_this/master/updates.json"
}
}
}