ChatGPT Equation Renderer
Display equations in ChatGPT using Latex notation
ChatGPT Equation Renderer란 무엇입니까?
ChatGPT Equation Renderer은(는) aavila0707에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Display equations in ChatGPT using Latex notation"입니다.
확장 프로그램 스크린샷
ChatGPT Equation Renderer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } ] } |