Meet Math Support

Parse basic markdown and tex-equations in your Google Meet chat window!

Wat is Meet Math Support?

Meet Math Support is een Chrome-extensie ontwikkeld door shubhampanchal9773, en de belangrijkste functie is "Parse basic markdown and tex-equations in your Google Meet chat window!".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Meet Math Support

Download Meet Math Support-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        This extension parses the Tex-equations using KaTex and basic markdown in the Google Meet chat window. 
The homepage for this extension can be found at https://panchalshubham.github.io/google-meet-tex-support/
You can view the dependencies along with references on how messages are being parsed on the homepage. The homepage also contains a playground where you can spend some time to get hands-on on how your messages will be parsed! 
Here are the features provided:
- Parses basic markdown
- Parses inline and block equations
- Highlights the source-code with support of multiple programming languages
- Parses emoji shortcuts 
- Works with Google Chrome and Chromium!
The inspiration to this extension was to help the instructors especially from mathematics department in virtual/online classes.                    

Basisinformatie over de Extensie

Naam Meet Math Support Meet Math Support
ID hmohejfkaddphpbhlcghjglclikdnjkh
Officiële URL https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh
Beschrijving Parse basic markdown and tex-equations in your Google Meet chat window!
Bestandsgrootte 1.21 MB
Aantal Installaties 31
Huidige Versie 0.0.6
Laatst Bijgewerkt 2021-04-02
Publicatiedatum 2021-03-16
Ontwikkelaar shubhampanchal9773
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://panchalshubham.github.io/google-meet-tex-support/
Help Pagina-URL https://github.com/PanchalShubham/google-meet-tex-support/issues
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Math Support",
    "description": "Parse basic markdown and tex-equations in your Google Meet chat window!",
    "author": "Shubham Panchal ([email protected])",
    "version": "0.0.6",
    "manifest_version": 2,
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/highlightjs.min.js",
                "js\/katex.min.js",
                "js\/markdown-it.min.js",
                "js\/markdown-it-emoji.js",
                "js\/texmath.min.js",
                "js\/background.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Google Meet Math Support",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/meet.google.com\/*"
    ]
}