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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*"
    ]
}