Meet Math Support

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

Meet Math Support क्या है?

Meet Math Support shubhampanchal9773 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Parse basic markdown and tex-equations in your Google Meet chat window!"।

एक्सटेंशन स्क्रीनशॉट्स

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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Meet Math Support एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Meet Math Support Meet Math Support
ID hmohejfkaddphpbhlcghjglclikdnjkh
आधिकारिक URL https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh
विवरण Parse basic markdown and tex-equations in your Google Meet chat window!
फ़ाइल का आकार 1.21 MB
स्थापना संख्या 31
वर्तमान संस्करण 0.0.6
अंतिम अपडेट 2021-04-02
प्रकाशन तिथि 2021-03-16
डेवलपर shubhampanchal9773
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://panchalshubham.github.io/google-meet-tex-support/
सहायता पृष्ठ URL https://github.com/PanchalShubham/google-meet-tex-support/issues
समर्थित भाषाएँ 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\/*"
    ]
}