-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (30 loc) · 922 Bytes
/
manifest.json
File metadata and controls
37 lines (30 loc) · 922 Bytes
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
{
"name": "Linguee Context Menu",
"author": "addyi",
"homepage_url": "https://github.com/addyi/linguee-chrome-plugin",
"version": "1.6.0",
"manifest_version": 2,
"description": "A chrome plugin which provides a context menu for easy linguee searches",
"permissions": [
"contextMenus",
"storage"
],
"offline_enabled": false,
"browser_action": {
"default_icon": "img/pluginIcon128.png",
"default_popup": "popup.html",
"default_title": "Linguee Context Menu"
},
"icons": {
"16": "img/pluginIcon16.png",
"32": "img/pluginIcon32.png",
"48": "img/pluginIcon48.png",
"64": "img/pluginIcon64.png",
"128": "img/pluginIcon128.png",
"256": "img/pluginIcon256.png",
"512": "img/pluginIcon512.png"
},
"background": {
"scripts": ["setup.js","contextAction.js"]
}
}