ChatGPT Equation Renderer

Display equations in ChatGPT using Latex notation

Co je ChatGPT Equation Renderer?

ChatGPT Equation Renderer je rozšíření Chrome vyvinuté aavila0707, a jeho hlavní funkcí je „Display equations in ChatGPT using Latex notation“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření ChatGPT Equation Renderer

Stáhněte si soubory rozšíření ChatGPT Equation Renderer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název ChatGPT Equation Renderer ChatGPT Equation Renderer
ID nkkkaendbndanjjndfpebmekhgdjlhkh
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-equation-renderer/nkkkaendbndanjjndfpebmekhgdjlhkh
Popis Display equations in ChatGPT using Latex notation
Velikost souboru 320 KB
Počet instalací 10,087
Aktuální Verze 1.1.1
Poslední Aktualizace 2023-05-18
Datum Vydání 2023-03-14
Hodnocení 4.90/5 Celkem 20 Hodnocení
Vývojář aavila0707
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/alejandro-ao/chatgpt-equations
URL Stránky Nápovědy https://docs.google.com/forms/d/e/1FAIpQLSdyL1sJW38Y95l9n1_Xh-Pn8vHvj4-Vt43aic4FDxQiaycQKQ/viewform
Podporované Jazyky 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"
        }
    ]
}