-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
29 lines (29 loc) · 755 Bytes
/
manifest.json
File metadata and controls
29 lines (29 loc) · 755 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
{
"name": "Hover Lookup",
"version": "1.1.2",
"description": "Holding <CTRL> + <SHIFT> while hovering over a word will show the wiktionary entry for that word in an inline window.",
"manifest_version": 2,
"options_page": "options.html",
"permissions": [
"*://*/",
"storage"
],
"icons": {
"16": "icon/icon_16.png",
"32": "icon/icon_32.png",
"48": "icon/icon_48.png",
"128": "icon/icon_128.png"
},
"background": {
"scripts": ["js/jquery-1.12.4.min.js", "js/background.js"],
"persistent": false
},
"content_scripts": [
{
"js": ["js/jquery-1.12.4.min.js", "js/getword.js", "js/hoverdict.js"],
"matches": ["<all_urls>"],
"all_frames": true,
"css": ["css/hoverdict.css"]
}
]
}