-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.22 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
{
"manifest_version": 2,
"name": "Dictionary Browser Extension",
"homepage_url": "https://github.com/aetiss/dictionary_browser_extension",
"version": "1.1",
"description": "Basic English Dictionary lookup addon/extension for Firefox providing meaning of word thats double-clicked selected on a webpage.",
"icons": {
"64": "assets/icon_book_64.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
]
}
],
"browser_action": {
"default_icon": {
"64": "assets/icon_book_64.png"
},
"default_popup": "browserAction/index.html",
"default_title": "English Dictionary"
},
"commands": {
"_execute_browser_action": {
"suggested_key": { "default": "Ctrl+Alt+S" },
"description": "search dictionary for selected keyword"
}
},
"web_accessible_resources": [
"options/options.html"
],
"options_ui": {
"page": "options/options.html",
"browser_style": false,
"open_in_tab": true
}
}