riot-katex/manifest.json

25 lines
558 B
JSON
Raw Permalink Normal View History

2020-04-09 14:31:27 +02:00
{
"manifest_version": 2,
2020-04-12 12:29:30 +02:00
"name": "Riot KaTeX",
2020-07-19 18:27:22 +02:00
"version": "1.1.1",
2020-04-09 16:06:36 +02:00
2020-04-12 12:29:30 +02:00
"description": "Renders formulas on riot chat instances chats using KaTeX.",
2020-04-09 14:31:27 +02:00
"content_scripts": [
{
2020-04-10 10:16:38 +02:00
"matches": ["*://*/*"],
2020-04-09 16:06:36 +02:00
"js": ["katex.min.js",
"auto-render.min.js",
2020-04-09 14:31:27 +02:00
"riot-katex.js"],
2020-04-09 16:06:36 +02:00
"css": ["katex.min.css"],
2020-04-09 14:31:27 +02:00
"run_at": "document_idle"
}
2020-04-09 16:06:36 +02:00
],
2020-04-10 10:16:38 +02:00
"icons": {
"96": "icons/icon.png"
},
2020-04-09 16:06:36 +02:00
"web_accessible_resources": [
"fonts/*.woff2"
2020-04-09 14:31:27 +02:00
]
}