Meet Math Support
Parse basic markdown and tex-equations in your Google Meet chat window!
¿Qué es Meet Math Support?
Meet Math Support es una extensión de Chrome desarrollada por shubhampanchal9773, y su función principal es "Parse basic markdown and tex-equations in your Google Meet chat window!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Meet Math Support
Descarga archivos de extensión Meet Math Support en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Meet Math Support |
ID | hmohejfkaddphpbhlcghjglclikdnjkh |
URL Oficial | https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh |
Descripción | Parse basic markdown and tex-equations in your Google Meet chat window! |
Tamaño del Archivo | 1.21 MB |
Cantidad de Instalaciones | 31 |
Versión Actual | 0.0.6 |
Última Actualización | 2021-04-02 |
Fecha de Publicación | 2021-03-16 |
Desarrollador | shubhampanchal9773 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://panchalshubham.github.io/google-meet-tex-support/ |
URL de la Página de Ayuda | https://github.com/PanchalShubham/google-meet-tex-support/issues |
Idiomas Soportados | 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\/*" ] } |