-
Notifications
You must be signed in to change notification settings - Fork 28
/
manifest.json
127 lines (115 loc) · 2.78 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"manifest_version": 2,
"name": "Markdown Viewer Webext",
"short_name": "Markdown Viewer",
"version": "2.0.2",
"author": "Cimbali, Keith L Robertson",
"homepage_url": "https://github.com/Cimbali/markdown-viewer",
"description": "Displays markdown documents beautified in your browser, both on the web and local files (file:// URLs).",
"browser_specific_settings": {
"gecko": {
"id": "{943b8007-a895-44af-a672-4f4ea548c95f}"
}
},
"background": {
"scripts": ["ext/background.js"],
"persistent": false
},
"icons": {
"48": "ext/markdown-mark.svg",
"96": "ext/markdown-mark.svg"
},
"permissions": [
"storage",
"activeTab"
],
"optional_permissions": [
"*://*/*.markdown",
"*://*/*.MARKDOWN",
"*://*/*.md",
"*://*/*.MD",
"*://*/*.mdown",
"*://*/*.MDOWN",
"*://*/*.mdwn",
"*://*/*.MDWN",
"*://*/*.mkd",
"*://*/*.MKD",
"*://*/*.mkdn",
"*://*/*.MKDN",
"file://*/*.markdown",
"file://*/*.MARKDOWN",
"file://*/*.md",
"file://*/*.MD",
"file://*/*.mdown",
"file://*/*.MDOWN",
"file://*/*.mdwn",
"file://*/*.MDWN",
"file://*/*.mkd",
"file://*/*.MKD",
"file://*/*.mkdn",
"file://*/*.MKDN"
],
"content_security_policy": "default-src: 'self'; object-src 'none'; frame-src 'self'; script-src 'self'; img-src blob: https: filesystem:; media-src blob: https: filesystem:; connect-src blob: https: filesystem:; style-src: 'self' blob:; upgrade-insecure-requests;",
"protocol_handlers": [
{
"protocol": "ext+view-markdown",
"name": "Markdown Viewer",
"uriTemplate": "/ext/view-md.html?file=%s"
}
],
"options_ui": {
"page": "ext/options.html",
"browser_style": true
},
"web_accessible_resources": [
"lib/sss/*.css",
"lib/highlightjs/build/styles/*.min.css",
"lib/markdown-it-texmath/css/texmath.css",
"lib/katex/dist/katex.min.css",
"ext/menu.css"
],
"page_action": {
"browser_style": true,
"default_icon": "ext/markdown-mark.svg",
"default_title": "Force rendering Markdown",
"show_matches": [
"*://*/*.markdown",
"*://*/*.MARKDOWN",
"*://*/*.md",
"*://*/*.MD",
"*://*/*.mdown",
"*://*/*.MDOWN",
"*://*/*.mdwn",
"*://*/*.MDWN",
"*://*/*.mkd",
"*://*/*.MKD",
"*://*/*.mkdn",
"*://*/*.MKDN",
"file://*/*.markdown",
"file://*/*.MARKDOWN",
"file://*/*.md",
"file://*/*.MD",
"file://*/*.mdown",
"file://*/*.MDOWN",
"file://*/*.mdwn",
"file://*/*.MDWN",
"file://*/*.mkd",
"file://*/*.MKD",
"file://*/*.mkdn",
"file://*/*.MKDN"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "ext/markdown-mark.svg",
"default_title": "Open local markdown file"
},
"commands": {
"_execute_browser_action": {
"description": "Open local markdown file picker"
},
"_execute_page_action": {
"description": "Force rendering markdown in page"
}
}
}