forked from dgileadi/thunderbird-render-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
33 lines (33 loc) · 785 Bytes
/
Copy pathmanifest.json
File metadata and controls
33 lines (33 loc) · 785 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
30
31
32
33
{
"name": "Render Markdown Messages",
"description": "Render Markdown-formatted messages in the reading pane from a email",
"manifest_version": 2,
"version": "1.0",
"author": "Luis Sánchez",
"applications": {
"gecko": {
"id": "renderMarkdownMessages@sanchezluys.com",
"strict_min_version": "78.0"
}
},
"permissions": [
"menus",
"messagesRead",
"messagesModify",
"storage"
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"16": "markdown-icon.png",
"32": "markdown-icon.png",
"64": "markdown-icon.png"
},
"options_ui": {
"page": "options.html",
"browser_style": true
}
}