ChatGPT Equation Renderer
Display equations in ChatGPT using Latex notation
Τι είναι το ChatGPT Equation Renderer;
Το ChatGPT Equation Renderer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον aavila0707, και η κύρια λειτουργία του είναι "Display equations in ChatGPT using Latex notation".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Equation Renderer
Λήψη αρχείων επέκτασης ChatGPT Equation Renderer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
The ChatGPT Equation Renderer is an extension that allows you to render mathematical expressions in LaTeX within ChatGPT and copy the equations with a simple click. All you have to do is click on the button "Enable LaTeX" and you will get your LaTeX equations. If you want to copy a LaTeX expression, just click on top of it and you will get the LaTeX code in your clipboard. The extension is open source. You can be confident that the extension is secure. To contribute: https://github.com/alejandro-ao/chatgpt-equations To request a feature or bug report: https://docs.google.com/forms/d/e/1FAIpQLSdyL1sJW38Y95l9n1_Xh-Pn8vHvj4-Vt43aic4FDxQiaycQKQ/viewform To buy me a coffee: https://www.buymeacoffee.com/alejandro.ao
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChatGPT Equation Renderer |
ID | nkkkaendbndanjjndfpebmekhgdjlhkh |
Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-equation-renderer/nkkkaendbndanjjndfpebmekhgdjlhkh |
Περιγραφή | Display equations in ChatGPT using Latex notation |
Μέγεθος Αρχείου | 320 KB |
Αριθμός Εγκαταστάσεων | 10,087 |
Τρέχουσα Έκδοση | 1.1.1 |
Τελευταία Ενημέρωση | 2023-05-18 |
Ημερομηνία Δημοσίευσης | 2023-03-14 |
Αξιολόγηση | 4.90/5 Συνολικά 20 Αξιολογήσεις |
Προγραμματιστής | aavila0707 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/alejandro-ao/chatgpt-equations |
Διεύθυνση URL της Σελίδας Βοήθειας | https://docs.google.com/forms/d/e/1FAIpQLSdyL1sJW38Y95l9n1_Xh-Pn8vHvj4-Vt43aic4FDxQiaycQKQ/viewform |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Equation Renderer", "description": "Display equations in ChatGPT using Latex notation", "version": "1.1.1", "icons": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon.png", "32": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "permissions": [ "activeTab" ], "default_popup": "popup\/popup.html" }, "content_scripts": [ { "js": [ ".\/content.js" ], "matches": [ "*:\/\/chat.openai.com\/*" ], "run_at": "document_end" }, { "css": [ ".\/content.css" ], "matches": [ "*:\/\/chat.openai.com\/*" ], "run_at": "document_start" } ] } |