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!」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } |