Meet Math Support
Parse basic markdown and tex-equations in your Google Meet chat window!
Qu'est-ce que Meet Math Support ?
Meet Math Support est une extension Chrome développée par shubhampanchal9773, et sa fonction principale est "Parse basic markdown and tex-equations in your Google Meet chat window!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Meet Math Support
Téléchargez les fichiers d'extension Meet Math Support au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Meet Math Support |
ID | hmohejfkaddphpbhlcghjglclikdnjkh |
URL Officiel | https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh |
Description | Parse basic markdown and tex-equations in your Google Meet chat window! |
Taille du Fichier | 1.21 MB |
Nombre d'Installations | 31 |
Version Actuelle | 0.0.6 |
Dernière Mise à Jour | 2021-04-02 |
Date de Publication | 2021-03-16 |
Développeur | shubhampanchal9773 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://panchalshubham.github.io/google-meet-tex-support/ |
URL de la Page d'Aide | https://github.com/PanchalShubham/google-meet-tex-support/issues |
Langues Prises en Charge | 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\/*" ] } |