Meet Math Support

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

什么是Meet Math Support?

Meet Math Support是由shubhampanchal9773开发的Chrome扩展程序,该扩展的主要功能是“Parse basic markdown and tex-equations in your Google Meet chat window!”。

扩展截图

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

下载Meet Math Support扩展crx文件

下载Meet Math Support扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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\/*"
    ]
}