-
Notifications
You must be signed in to change notification settings - Fork 72
/
manifest.json
45 lines (45 loc) · 1.28 KB
/
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
{
"background": {
"scripts": [ "scripts/jquery.min.js", "scripts/genlib.js", "scripts/chromereload.js", "scripts/background.js" ]
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
},
"version": "5.0.5",
"browser_action": {
"default_icon": {
"16": "images/copyfish-16.png",
"32": "images/copyfish-32.png",
"48": "images/copyfish-48.png",
"128": "images/copyfish-128.png"
},
"default_title": "__MSG_appName__"
},
"default_locale": "en",
"description": "__MSG_appDescription__",
"icons": {
"16": "images/copyfish-16.png",
"32": "images/copyfish-32.png",
"48": "images/copyfish-48.png",
"128": "images/copyfish-128.png"
},
"manifest_version": 2,
"name": "__MSG_appName__",
"permissions": [
"contextMenus",
"activeTab",
"storage",
"notifications",
"nativeMessaging",
"clipboardRead"
],
"options_ui": {
"page": "options.html",
"open_in_tab":true
},
"short_name": "__MSG_appShortName__",
"web_accessible_resources": [ "message-dialog.html","dialog.html", "config/config.json", "images/gear.png", "images/outside.png", "images/close.png","images/translate.png","images/deepl.jpg","images/copyfish-32.png"]
}