ChatGPT Equation Renderer
Display equations in ChatGPT using Latex notation
ChatGPT Equation Renderer क्या है?
ChatGPT Equation Renderer aavila0707 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Display equations in ChatGPT using Latex notation"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Equation Renderer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |