-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (32 loc) · 978 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
{
"manifest_version": 2,
"name": "Point And Correct",
"version": "1.0",
"description": "Adds the ability to check if a selected word is spelt correctly. If not, it provides potenial corrections.",
"icons" : {
"48" : "icons/spy48.png"
},
"permissions" : [
"activeTab"
],
"background": {
"scripts": ["/src/background/addListeners.js"]
},
"browser_action" : {
"default_icon" : "icons/spy32.png",
"default_title" : "Point and Correct",
"default_popup" : "popup/popup.html"
},
"commands" : {
"trigger-correction" : {
"suggested_key": {
"default" : "Ctrl+Alt+L"
},
"description" : "Activates the suggestion window when triggered."
}
},
"web_accessible_resources": [
"/src/content/suggestion.html",
"/src/content/suggestion.css"
]
}