-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmanifest.json
35 lines (35 loc) · 924 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
{
"manifest_version": 2,
"name": "Page Translator",
"version": "1.0.0",
"author": "Jeremiah Lee",
"developer": {
"name": "Jeremiah Lee",
"url": "https://jeremiahlee.com/"
},
"description": "Translate any page using Google Translate or Microsoft Translator.",
"homepage_url": "https://github.com/jeremiahlee/page-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": [
"activeTab",
"storage",
"tabs"
],
"page_action": {
"browser_style": true,
"default_icon": "icons/icon.svg",
"default_title": "Translate"
},
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "options/options.html"
}
}