forked from KingLui69/page-translator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
manifest.json
39 lines (39 loc) · 1004 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
{
"manifest_version": 2,
"name": "Page Translator Revised",
"version": "2019.5.23",
"developer": {
"name": "Mathnerd314",
"url": "https://github.com/Mathnerd314/page-translator"
},
"description": "Translate any page using Google Translate or Microsoft Translator.",
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"permissions": [
"storage",
"tabs",
"menus"
],
"page_action": {
"browser_style": true,
"default_icon": "icons/icon.svg",
"default_title": "Translate Page"
},
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options/options.html",
"browser_style": true
},
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}