GitHub Math Display

Displays LaTeX math equations in GitHub markdown previews.

What is GitHub Math Display?

GitHub Math Display is a Chrome extension developed by AaronCQL, and its main feature is "Displays LaTeX math equations in GitHub markdown previews.".

Extension Screenshots

screenshot

Download GitHub Math Display Extension CRX File

Download GitHub Math Display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Features:
- Only targets Markdown previews: code blocks and code previews will not be affected
- Fast and efficient rendering using KaTeX
- Supports current GitHub website: including internal navigations, and when previewing an edited Markdown file                    

Extension Basic Information

Name GitHub Math Display GitHub Math Display
ID cgolaobglebjonjiblcjagnpmdmlgmda
Official URL https://chromewebstore.google.com/detail/github-math-display/cgolaobglebjonjiblcjagnpmdmlgmda
Description Displays LaTeX math equations in GitHub markdown previews.
File Size 1.09 MB
Installation Count 849
Current Version 0.3.7
Last Updated 2022-03-25
Publish Date 2020-07-30
Rating 5.00/5 Total 7 Ratings
Developer AaronCQL
Email [email protected]
Payment Type free
Extension Website https://github.com/AaronCQL/katex-github-chrome-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Math Display",
    "version": "0.3.7",
    "description": "Displays LaTeX math equations in GitHub markdown previews.",
    "icons": {
        "128": "assets\/icon128.png"
    },
    "content_scripts": [
        {
            "js": [
                "assets\/index-b8a067f0.js"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "assets\/katex.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "assets\/background-c76225da.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "index.js",
        "assets\/fonts\/*",
        "constants-d1d9f3fd.js"
    ],
    "permissions": [
        "webNavigation",
        "*:\/\/*.github.com\/*"
    ]
}