Meet Math Support
Parse basic markdown and tex-equations in your Google Meet chat window!
Vad är Meet Math Support?
Meet Math Support är en Chrome-tillägg utvecklad av shubhampanchal9773, och dess huvudfunktion är "Parse basic markdown and tex-equations in your Google Meet chat window!".
Tilläggsskärmbilder
Ladda ner Meet Math Support-förlängningens CRX-fil
Ladda ner Meet Math Support-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hmohejfkaddphpbhlcghjglclikdnjkh |
| Officiell webbadress | https://chromewebstore.google.com/detail/meet-math-support/hmohejfkaddphpbhlcghjglclikdnjkh |
| Beskrivning | Parse basic markdown and tex-equations in your Google Meet chat window! |
| Filstorlek | 1.21 MB |
| Antal Installationer | 31 |
| Aktuell Version | 0.0.6 |
| Senast Uppdaterad | 2021-04-02 |
| Publiceringsdatum | 2021-03-16 |
| Utvecklare | shubhampanchal9773 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://panchalshubham.github.io/google-meet-tex-support/ |
| Hjälpsida URL | https://github.com/PanchalShubham/google-meet-tex-support/issues |
| Stödda Språk | 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\/*"
]
} | |