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”。

扩展截图

screenshot
screenshot
screenshot

下载ChatGPT Equation Renderer扩展crx文件

下载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 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"
        }
    ]
}