Math Equations Anywhere
Add equations to your math page
Τι είναι το Math Equations Anywhere;
Το Math Equations Anywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://mathequations.dev, και η κύρια λειτουργία του είναι "Add equations to your math page".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Math Equations Anywhere
Λήψη αρχείων επέκτασης Math Equations Anywhere σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
--Features Support * Support for Latex,MathML, AsciiMath * should work on most websites * Colored Equations * Multiple Sizes * Downloadable Images How it works Type your math equation into the left text box and a preview of the image will be created on the right. When you are done it, click the "copy image" button and it will load the image into your clipboard. Then you can past the images with the command "Ctrl + V" or by right clicking and pasting. On website that support you can just drag the image into the webpage. Tested on * Google Slides, Google Docs, * Onenote message me with error or features at [email protected] Code - https://github.com/brendena/MathEquations-ExtensionV2
Βασικές Πληροφορίες Επέκτασης
Όνομα | Math Equations Anywhere |
ID | fkioioejambaepmmpepneigdadjpfamh |
Επίσημο URL | https://chromewebstore.google.com/detail/math-equations-anywhere/fkioioejambaepmmpepneigdadjpfamh |
Περιγραφή | Add equations to your math page |
Μέγεθος Αρχείου | 1.03 MB |
Αριθμός Εγκαταστάσεων | 11,831 |
Τρέχουσα Έκδοση | 5.0.3 |
Τελευταία Ενημέρωση | 2022-07-20 |
Ημερομηνία Δημοσίευσης | 2020-03-29 |
Αξιολόγηση | 4.10/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | https://mathequations.dev |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Math Equations Anywhere", "version": "5.0.3", "description": "Add equations to your math page", "manifest_version": 3, "author": "Brenden Adamczak", "permissions": [ "activeTab", "clipboardWrite", "scripting", "storage" ], "background": { "service_worker": "background.js" }, "commands": { "open-close-extension": { "suggested_key": { "default": "Ctrl+Shift+U" }, "description": "Opens the extension or closes it" } }, "icons": { "16": ".\/img\/16x16.png", "32": ".\/img\/32x32.png", "48": ".\/img\/48x48.png", "96": ".\/img\/96x96.png", "128": ".\/img\/128x128.png", "512": ".\/img\/512x512.png" }, "action": { "default_icon": [], "default_title": "Math Equations" } } |