Meet Math Support

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

Meet Math Support là gì?

Meet Math Support là một tiện ích mở rộng Chrome được phát triển bởi shubhampanchal9773, và tính năng chính của nó là "Parse basic markdown and tex-equations in your Google Meet chat window!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

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

Tải xuống tệp CRX của tiện ích mở rộng Meet Math Support

Tải xuống các tệp mở rộng Meet Math Support dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Meet Math Support Meet Math Support
ID hmohejfkaddphpbhlcghjglclikdnjkh
URL Chính Thức https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh
Mô tả Parse basic markdown and tex-equations in your Google Meet chat window!
Kích Thước Tệp 1.21 MB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2021-04-02
Ngày Phát Hành 2021-03-16
Nhà Phát Triển shubhampanchal9773
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://panchalshubham.github.io/google-meet-tex-support/
URL Trang Trợ Giúp https://github.com/PanchalShubham/google-meet-tex-support/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}