Meet Math Support
Parse basic markdown and tex-equations in your Google Meet chat window!
ما هو Meet Math Support؟
Meet Math Support هو إضافة Chrome تم تطويرها بواسطة shubhampanchal9773، والميزة الرئيسية لها هي "Parse basic markdown and tex-equations in your Google Meet chat window!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Meet Math Support
قم بتنزيل ملفات الامتداد Meet Math Support بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
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/ |
عنوان صفحة المساعدة | 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\/*" ] } |