-
Notifications
You must be signed in to change notification settings - Fork 51
/
manifest.json
103 lines (103 loc) · 3.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
{
"manifest_version": 2,
"name": "Markdown Reader",
"version": "1.0.15",
"description": "Read markdown file in Chrome.",
"icons": {
"128": "images/icon.png",
"16": "images/icon.png",
"48": "images/icon.png"
},
"permissions": ["tabs", "\u003Call_urls\u003E"],
"content_scripts": [{
"js": ["jquery-1.8.3.min.js", "highlight.min.js", "katex.min.js", "showdown.js", "markdownreader.js"],
"matches": ["*://*/*.md", "file://*/*.md", "*://*/*.markdown", "file://*/*.markdown", "*://*/*.mdown", "file://*/*.mdown", "*://*/*.mkdn", "file://*/*.mkdn", "*://*/*.mkd", "file://*/*.mkd", "*://*/*.text", "file://*/*.text", "*://*/*.mdtext", "file://*/*.mdtext", "*://*/*.mdtxt", "file://*/*.mdtxt"],
"run_at": "document_end"
}],
"web_accessible_resources": [
"markdownreader.css",
"images/backtop.gif",
"katex.min.css",
"hljs.min.css",
"fonts/KaTeX_AMS-Regular.eot",
"fonts/KaTeX_AMS-Regular.ttf",
"fonts/KaTeX_AMS-Regular.woff",
"fonts/KaTeX_AMS-Regular.woff2",
"fonts/KaTeX_Caligraphic-Bold.eot",
"fonts/KaTeX_Caligraphic-Bold.ttf",
"fonts/KaTeX_Caligraphic-Bold.woff",
"fonts/KaTeX_Caligraphic-Bold.woff2",
"fonts/KaTeX_Caligraphic-Regular.eot",
"fonts/KaTeX_Caligraphic-Regular.ttf",
"fonts/KaTeX_Caligraphic-Regular.woff",
"fonts/KaTeX_Caligraphic-Regular.woff2",
"fonts/KaTeX_Fraktur-Bold.eot",
"fonts/KaTeX_Fraktur-Bold.ttf",
"fonts/KaTeX_Fraktur-Bold.woff",
"fonts/KaTeX_Fraktur-Bold.woff2",
"fonts/KaTeX_Fraktur-Regular.eot",
"fonts/KaTeX_Fraktur-Regular.ttf",
"fonts/KaTeX_Fraktur-Regular.woff",
"fonts/KaTeX_Fraktur-Regular.woff2",
"fonts/KaTeX_Main-Bold.eot",
"fonts/KaTeX_Main-Bold.ttf",
"fonts/KaTeX_Main-Bold.woff",
"fonts/KaTeX_Main-Bold.woff2",
"fonts/KaTeX_Main-Italic.eot",
"fonts/KaTeX_Main-Italic.ttf",
"fonts/KaTeX_Main-Italic.woff",
"fonts/KaTeX_Main-Italic.woff2",
"fonts/KaTeX_Main-Regular.eot",
"fonts/KaTeX_Main-Regular.ttf",
"fonts/KaTeX_Main-Regular.woff",
"fonts/KaTeX_Main-Regular.woff2",
"fonts/KaTeX_Math-BoldItalic.eot",
"fonts/KaTeX_Math-BoldItalic.ttf",
"fonts/KaTeX_Math-BoldItalic.woff",
"fonts/KaTeX_Math-BoldItalic.woff2",
"fonts/KaTeX_Math-Italic.eot",
"fonts/KaTeX_Math-Italic.ttf",
"fonts/KaTeX_Math-Italic.woff",
"fonts/KaTeX_Math-Italic.woff2",
"fonts/KaTeX_Math-Regular.eot",
"fonts/KaTeX_Math-Regular.ttf",
"fonts/KaTeX_Math-Regular.woff",
"fonts/KaTeX_Math-Regular.woff2",
"fonts/KaTeX_SansSerif-Bold.eot",
"fonts/KaTeX_SansSerif-Bold.ttf",
"fonts/KaTeX_SansSerif-Bold.woff",
"fonts/KaTeX_SansSerif-Bold.woff2",
"fonts/KaTeX_SansSerif-Italic.eot",
"fonts/KaTeX_SansSerif-Italic.ttf",
"fonts/KaTeX_SansSerif-Italic.woff",
"fonts/KaTeX_SansSerif-Italic.woff2",
"fonts/KaTeX_SansSerif-Regular.eot",
"fonts/KaTeX_SansSerif-Regular.ttf",
"fonts/KaTeX_SansSerif-Regular.woff",
"fonts/KaTeX_SansSerif-Regular.woff2",
"fonts/KaTeX_Script-Regular.eot",
"fonts/KaTeX_Script-Regular.ttf",
"fonts/KaTeX_Script-Regular.woff",
"fonts/KaTeX_Script-Regular.woff2",
"fonts/KaTeX_Size1-Regular.eot",
"fonts/KaTeX_Size1-Regular.ttf",
"fonts/KaTeX_Size1-Regular.woff",
"fonts/KaTeX_Size1-Regular.woff2",
"fonts/KaTeX_Size2-Regular.eot",
"fonts/KaTeX_Size2-Regular.ttf",
"fonts/KaTeX_Size2-Regular.woff",
"fonts/KaTeX_Size2-Regular.woff2",
"fonts/KaTeX_Size3-Regular.eot",
"fonts/KaTeX_Size3-Regular.ttf",
"fonts/KaTeX_Size3-Regular.woff",
"fonts/KaTeX_Size3-Regular.woff2",
"fonts/KaTeX_Size4-Regular.eot",
"fonts/KaTeX_Size4-Regular.ttf",
"fonts/KaTeX_Size4-Regular.woff",
"fonts/KaTeX_Size4-Regular.woff2",
"fonts/KaTeX_Typewriter-Regular.eot",
"fonts/KaTeX_Typewriter-Regular.ttf",
"fonts/KaTeX_Typewriter-Regular.woff",
"fonts/KaTeX_Typewriter-Regular.woff2"
]
}