-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
55 lines (47 loc) · 1.33 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
46
47
48
49
50
51
52
53
54
55
{
"manifest_version": 2,
"name": "Multidict",
"description": "Because spell checking should be smart, not difficult.",
"homepage_url": "https://github.com/GrayedFox/multi-dict",
"version": "1.0.6",
"icons": {
"48": "media/icons/icon-48.png",
"96": "media/icons/icon-96.png"
},
"background": {
"scripts": ["dist/background.js"]
},
"browser_action" : {
"default_icon": "media/icons/icon.svg",
"default_title": "Multidict"
},
"sidebar_action": {
"default_icon": "media/icons/icon.svg",
"default_panel": "dist/sidebar/sidebar.html",
"default_title": "Multidict"
},
"browser_specific_settings": {
"gecko": {
"id": "{9f589d36-a49a-4eef-b43f-f6bdb94379fe}",
"strict_min_version": "71.0"
}
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["dist/content.js"]
}
],
"commands": {
"addCustomWord": {
"suggested_key": { "default": "Alt+Shift+A" },
"description": "Add a word to your personal dictionary"
},
"removeCustomWord": {
"suggested_key": { "default": "Alt+Shift+D" },
"description": "Remove a word from your personal dictionary"
}
},
"permissions": ["storage", "menus", "tabs", "notifications"],
"web_accessible_resources": ["dictionaries/*.aff", "dictionaries/*.dic", "media/icons/*.svg"]
}