ChatGPT Equation Renderer

Display equations in ChatGPT using Latex notation

Was ist ChatGPT Equation Renderer?

ChatGPT Equation Renderer ist eine Chrome-Erweiterung, die von aavila0707 entwickelt wurde, und ihr Hauptmerkmal ist "Display equations in ChatGPT using Latex notation".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ChatGPT Equation Renderer-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Equation Renderer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Equation Renderer ChatGPT Equation Renderer
ID nkkkaendbndanjjndfpebmekhgdjlhkh
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-equation-renderer/nkkkaendbndanjjndfpebmekhgdjlhkh
Beschreibung Display equations in ChatGPT using Latex notation
Dateigröße 320 KB
Installationsanzahl 10,087
Aktuelle Version 1.1.1
Letztes Update 2023-05-18
Veröffentlichungsdatum 2023-03-14
Bewertung 4.90/5 Insgesamt 20 Bewertungen
Entwickler aavila0707
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/alejandro-ao/chatgpt-equations
Hilfeseite URL https://docs.google.com/forms/d/e/1FAIpQLSdyL1sJW38Y95l9n1_Xh-Pn8vHvj4-Vt43aic4FDxQiaycQKQ/viewform
Unterstützte Sprachen 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"
        }
    ]
}