TeX Math Here
Use the TeX markup language to take math here, there, or just about anywhere that images are supported.
TeX Math Here क्या है?
TeX Math Here tex-math-here द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use the TeX markup language to take math here, there, or just about anywhere that images are supported."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TeX Math Here एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | TeX Math Here |
ID | gopfokpflndblbooehdbffnnjmnegeph |
आधिकारिक URL | https://chromewebstore.google.com/detail/tex-math-here/gopfokpflndblbooehdbffnnjmnegeph |
विवरण | Use the TeX markup language to take math here, there, or just about anywhere that images are supported. |
फ़ाइल का आकार | 114 KB |
स्थापना संख्या | 1,552 |
वर्तमान संस्करण | 0.7.11 |
अंतिम अपडेट | 2020-03-08 |
प्रकाशन तिथि | 2020-03-08 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | tex-math-here |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.mathaddons.com |
सहायता पृष्ठ URL | https://github.com/mathaddons/tex-math-here/issues |
समर्थित भाषाएँ | 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" } } } } |