-
-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathmanifest.json
45 lines (38 loc) · 914 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
40
41
42
43
44
45
{
"author": "Suraj Jain",
"manifest_version": 2,
"name": "Dictionary Anywhere",
"version": "1.1.0",
"description": "View definitions easily as you browse the web. Double-click any word to view its definition in a small pop-up bubble.",
"icons": {
"48": "icons/Dictionary-48.png",
"64": "icons/Dictionary-64.png",
"96": "icons/Dictionary-96.png",
"128": "icons/Dictionary-128.png"
},
"options_ui": {
"page": "options/options.html",
"browser_style": true,
"chrome_style": true
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": [
"common/browser-polyfill.js",
"content_scripts/dictionary.js"
]
}
],
"background": {
"scripts": [
"common/browser-polyfill.js",
"background/background.js"
],
"persistent": false
},
"permissions": [
"storage",
"https://www.google.com/"
]
}