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
|
{
"manifest_version": 3,
"name": "ASAP",
"version": "0.1.0",
"description": "Adds LaTeX and code support to Pronto.",
"content_scripts": [{
"matches": ["*://*.pronto.io/*"],
"js": [
"hljs/highlight.min.js",
"hljs/latex.min.js",
"katex/katex.min.js",
"katex/auto-render.min.js",
"page.js"
],
"css": [
"hljs/default.min.css",
"styles.css"
]
}],
"web_accessible_resources": [
{
"resources": ["STIXTwoMath-Regular.otf"],
"matches": ["*://*.pronto.io/*"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "asap@pml4t.net"
}
}
}
|