MathQuill for Gmail/Thunderbird
WYSIWYG editing of math in Gmail (and possibly other pages)
Τι είναι το MathQuill for Gmail/Thunderbird;
Το MathQuill for Gmail/Thunderbird είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dominique Unruh, και η κύρια λειτουργία του είναι "WYSIWYG editing of math in Gmail (and possibly other pages)".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MathQuill for Gmail/Thunderbird
Λήψη αρχείων επέκτασης MathQuill for Gmail/Thunderbird σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This browser plugin allows you to edit formulas in Gmail messages using a graphical formula editor. The script uses MathQuill as the formula editor, and the CodeCogs server (with their generous permission [1]) for generating the images. When editing a mail, press Ctrl-M to insert a formula. Edit the formula that appears in the interactive formula editor. Press enter to convert it into a picture. (You have to exit the formula editor via enter, otherwise the picture will not be updated.) To edit an existing formula, either click on it, or position the cursor after it and press Ctrl-M. See the Wiki (https://github.com/dominique-unruh/mathquill-for-gmail/wiki) for more information. [1] Please note that if you are generating a lot of equations from a single domain, i.e. over 3000/day, then you may need to arrange a commercial licence with CodeCogs to support continued hosting of the service. Please see their terms and conditions: http://www.codecogs.com/latex/usage.php. *Privacy note:* The formulas rendered by this app are image links to the CodeCogs server. This means that the CodeCogs server will learn the content of the formulas (but not the text between them) when editing and when reading the email. No other information is transmitted by the extension.
Βασικές Πληροφορίες Επέκτασης
Όνομα | MathQuill for Gmail/Thunderbird |
ID | jdliianpdlmcfnjgijmgpmmpomdhllni |
Επίσημο URL | https://chromewebstore.google.com/detail/mathquill-for-gmailthunde/jdliianpdlmcfnjgijmgpmmpomdhllni |
Περιγραφή | WYSIWYG editing of math in Gmail (and possibly other pages) |
Μέγεθος Αρχείου | 83.54 KB |
Αριθμός Εγκαταστάσεων | 460 |
Τρέχουσα Έκδοση | 0.1.2 |
Τελευταία Ενημέρωση | 2022-05-14 |
Ημερομηνία Δημοσίευσης | 2017-11-21 |
Προγραμματιστής | Dominique Unruh |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/dominique-unruh/mathquill-for-gmail/wiki |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MathQuill for Gmail\/Thunderbird", "version": "0.1.2", "description": "WYSIWYG editing of math in Gmail (and possibly other pages)", "homepage_url": "https:\/\/github.com\/dominique-unruh\/mathquill-for-gmail\/wiki", "permissions": [ "storage", "activeTab" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "96": "icon-96.png", "128": "icon-128.png" }, "browser_action": { "default_icon": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "64": "icon-64.png", "96": "icon-96.png", "128": "icon-128.png" }, "default_title": "MathQuill for Gmail", "default_popup": "toolbar-menu.html" }, "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*", "https:\/\/inbox.google.com\/*", "https:\/\/www.example.com\/" ], "js": [ "jquery.min.js", "mathquill.min.js", "browser-polyfill.min.js", "shared.js", "mathquill-for-gmail.js" ], "css": [ "mathquill.css" ] } ] } |