ChatGPT Equation Renderer
Display equations in ChatGPT using Latex notation
Qu'est-ce que ChatGPT Equation Renderer ?
ChatGPT Equation Renderer est une extension Chrome développée par aavila0707, et sa fonction principale est "Display equations in ChatGPT using Latex notation".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ChatGPT Equation Renderer
Téléchargez les fichiers d'extension ChatGPT Equation Renderer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | ChatGPT Equation Renderer |
ID | nkkkaendbndanjjndfpebmekhgdjlhkh |
URL Officiel | https://chromewebstore.google.com/detail/chatgpt-equation-renderer/nkkkaendbndanjjndfpebmekhgdjlhkh |
Description | Display equations in ChatGPT using Latex notation |
Taille du Fichier | 320 KB |
Nombre d'Installations | 10,087 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2023-05-18 |
Date de Publication | 2023-03-14 |
Évaluation | 4.90/5 Total 20 Évaluations |
Développeur | aavila0707 |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/alejandro-ao/chatgpt-equations |
URL de la Page d'Aide | https://docs.google.com/forms/d/e/1FAIpQLSdyL1sJW38Y95l9n1_Xh-Pn8vHvj4-Vt43aic4FDxQiaycQKQ/viewform |
Langues Prises en Charge | 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" } ] } |