diff options
author | Radu <radu@pml4t.net> | 2023-11-24 16:52:57 -0500 |
---|---|---|
committer | Radu <radu@pml4t.net> | 2023-11-24 22:17:59 -0500 |
commit | 290f849c64c9f198f09b592daa48ecdae957375f (patch) | |
tree | fab417d5837cde3cd9b4db54dd61d59ca098a69d /manifest.json | |
parent | ef17d1d29212f5dc0218bfca1c30709e5a35f7b2 (diff) |
Support GFM using `remarked` and fix some bugs
- This avoids edge cases in the primitive parser I wrote.
- Add KaTeX stylesheet (cause of rendering issues, not Pronto).
- Bundle with Webpack.
Diffstat (limited to 'manifest.json')
-rw-r--r-- | manifest.json | 28 |
1 files changed, 4 insertions, 24 deletions
diff --git a/manifest.json b/manifest.json index 2a4f64c..d05aa60 100644 --- a/manifest.json +++ b/manifest.json @@ -2,30 +2,10 @@ "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" - ] - }], + "description": "Adds Markdown and LaTeX support to Pronto.", + "content_scripts": [{ "matches": ["*://*.pronto.io/*"], "js": ["page.js"] }], "web_accessible_resources": [ - { - "resources": ["STIXTwoMath-Regular.otf"], - "matches": ["*://*.pronto.io/*"] - } + { "resources": ["*"], "matches": ["*://*.pronto.io/*"] } ], - "browser_specific_settings": { - "gecko": { - "id": "asap@pml4t.net" - } - } + "browser_specific_settings": { "gecko": { "id": "asap@pml4t.net" } } } |