-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
43 lines (43 loc) · 964 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
{
"manifest_version": 2,
"default_locale": "en",
"name": "Smart Quotes",
"description": "__MSG_addonDescription__",
"version": "0.3",
"applications": {
"gecko": {
"id": "{3550f703-e582-4d05-9a08-453d09bdfdc6}",
"strict_min_version": "77.0"
}
},
"icons": {
"24": "images/icon.svg",
"48": "images/icon.svg",
"96": "images/icon.svg"
},
"commands": {
"open_compose_action_popup": {
"suggested_key": {
"default": "Alt+Q"
},
"description": "Open the Smart Quote Popup."
},
"toggle_smart_quote": {
"suggested_key": {
"default": "Alt+T"
},
"description": "Toggles Smart Quotes."
}
},
"background": {
"scripts":["background.js"]
},
"compose_action": {
"default_popup": "popup/popup.html",
"default_title": "Smart Quotes",
"default_icon": "images/icon.svg"
},
"permissions": ["compose", "storage"],
"author": "The Smart Quotes Team",
"homepage_url": "https://github.com/spodermenpls/smartquotes"
}