TeX Math Here
Use the TeX markup language to take math here, there, or just about anywhere that images are supported.
Qu'est-ce que TeX Math Here ?
TeX Math Here est une extension Chrome développée par tex-math-here, et sa fonction principale est "Use the TeX markup language to take math here, there, or just about anywhere that images are supported.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension TeX Math Here
Téléchargez les fichiers d'extension TeX Math Here 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 aims to overcome the platform dependencies of other TeX/LaTeX web extensions by rendering formulae as images that can be used wherever PNG images are supported. The generated image is injected with useful metadata (namely, the TeX code for screen reader compatibility) then automatically copied to the clipboard for pasting anywhere that images (or their source attributes) are supported. In Google Docs and Slides, double-double clicking an existing TeX Math Here creation will copy the TeX code to the popup for its next instance. *Keyboard Shortcut To Launch Windows: Ctrl+Shift+Y Linux: Ctrl+Shift+U Mac: Command+Shift+Y ChromeOS: Ctrl+Shift+U v0.7 Changelog: - Modified the list of available fonts, losing Comic Sans and Verdana, but gaining compatibility (through open source versions) with Bookman, Euler, Garamond, New Century Schoolbook, Palatino, STIX 2, Times New Roman, and Utopia - Added support for full 24-bit color - Added support for pulling code from TeX Math Here creations in GMail - Eliminated usage of a third party image renderer
Informations de Base sur l'Extension
Nom | TeX Math Here |
ID | gopfokpflndblbooehdbffnnjmnegeph |
URL Officiel | https://chromewebstore.google.com/detail/tex-math-here/gopfokpflndblbooehdbffnnjmnegeph |
Description | Use the TeX markup language to take math here, there, or just about anywhere that images are supported. |
Taille du Fichier | 114 KB |
Nombre d'Installations | 1,552 |
Version Actuelle | 0.7.11 |
Dernière Mise à Jour | 2020-03-08 |
Date de Publication | 2020-03-08 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | tex-math-here |
Type de Paiement | free |
Site Web de l'Extension | http://www.mathaddons.com |
URL de la Page d'Aide | https://github.com/mathaddons/tex-math-here/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "TeX Math Here", "version": "0.7.11", "description": "Use the TeX markup language to take math here, there, or just about anywhere that images are supported.", "icons": { "128": "images\/texhere\/texhere.128.png", "48": "images\/texhere\/texhere.48.png", "32": "images\/texhere\/texhere.32.png" }, "background": { "scripts": [ "latex_transport.js" ] }, "permissions": [ "clipboardWrite" ], "browser_action": { "default_icon": { "128": "images\/texhere\/texhere.128.png" }, "default_title": "TeX Math Here", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/document\/*", "*:\/\/docs.google.com\/presentation\/*" ], "js": [ "dblclick_edit.js" ] }, { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "dblclick_gmail_edit.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Y", "linux": "Ctrl+Shift+U", "mac": "Command+Shift+Y", "chromeos": "Ctrl+Shift+U" } } } } |