Quick Equations
A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.
Τι είναι το Quick Equations;
Το Quick Equations είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://akr.am, και η κύρια λειτουργία του είναι "A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Quick Equations
Λήψη αρχείων επέκτασης Quick Equations σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a fast equation editor/viewer that allows you to type equations quickly using helpful shortcuts and see them as you do. No more do you have to worry about missing a bracket or mistyping your equation with the real-time preview. You can then search for the equation on WolframAlpha to solve it or see more information. You can also copy or save the equation as an image by right-clicking it, or by dragging in sites such as Google Docs. You can use the extension directly on the WolframAlpha website by clicking the Quick Equations icon on the page. To access extension options, right-click the extension button and select "Options". You can use Quick Equations on any WeBWorK site by enabling that feature in the extension options. The extension also supports Google Forms and that can be enabled in the options. To add an equation as part of a question, click the image button in Google Forms and then drag the equation from the extension popup to the drop area. You can also preview equations while answering questions or viewing responses by clicking the Quick Equations icon next to them.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Quick Equations |
ID | pnhnfjbdadnnicpliempeidfminbflon |
Επίσημο URL | https://chromewebstore.google.com/detail/quick-equations/pnhnfjbdadnnicpliempeidfminbflon |
Περιγραφή | A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support. |
Μέγεθος Αρχείου | 75.2 KB |
Αριθμός Εγκαταστάσεων | 20,000 |
Τρέχουσα Έκδοση | 1.6.2 |
Τελευταία Ενημέρωση | 2022-06-25 |
Ημερομηνία Δημοσίευσης | 2019-02-10 |
Αξιολόγηση | 4.06/5 Συνολικά 34 Αξιολογήσεις |
Προγραμματιστής | https://akr.am |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://akr.am/equation |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mohd-akram/equation/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Quick Equations", "short_name": "Quick Eqs", "version": "1.6.2", "manifest_version": 2, "description": "A fast, shortcut based equation editor with realtime preview and WolframAlpha, WeBWorK and Google Forms support.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "js": [ "vendor\/jquery-3.6.0.min.js", "vendor\/jqmath-etc-0.4.6.min.js", "equation.js", "wolfram.js" ], "css": [ "vendor\/jqmath-0.4.3.css", "wolfram.css" ], "matches": [ "http:\/\/www.wolframalpha.com\/input*", "https:\/\/www.wolframalpha.com\/input*" ] } ], "permissions": [ "storage" ], "optional_permissions": [ "tabs", "webNavigation", "http:\/\/docs.google.com\/*", "https:\/\/docs.google.com\/*", "http:\/\/*\/*", "https:\/\/*\/*" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "web_accessible_resources": [ "icon.png" ] } |