GPT Anywhere

Get GPT completions on any webpage.

Co je GPT Anywhere?

GPT Anywhere je rozšíření Chrome vyvinuté hotspringsclap, a jeho hlavní funkcí je „Get GPT completions on any webpage.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření GPT Anywhere

Stáhněte si soubory rozšíření GPT Anywhere 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í

                        Free OpenAI GPT tool to generate text and input it from any webpage :
1. Save your usual favorite prompts
2. Right-click anywhere on the web
3. Done, GPT is now writing what you want for you

This is ChatGPT at your fingertips.


100% open source. No data collected by the extension.                    

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

Název GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
Oficiální URL https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
Popis Get GPT completions on any webpage.
Velikost souboru 159 KB
Počet instalací 404
Aktuální Verze 1.2.0
Poslední Aktualizace 2023-04-25
Datum Vydání 2023-02-20
Hodnocení 5.00/5 Celkem 5 Hodnocení
Vývojář hotspringsclap
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/CheeseDurger/gpt-anywhere
URL Stránky Nápovědy https://github.com/CheeseDurger/gpt-anywhere/issues/new
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Anywhere",
    "description": "Get GPT completions on any webpage.",
    "version": "1.2.0",
    "icons": {
        "16": "icons\/icon-16px.png",
        "32": "icons\/icon-32px.png",
        "48": "icons\/icon-48px.png",
        "128": "icons\/icon-128px.png"
    },
    "action": {
        "default_title": "Go to this extension's Options to configure your GPT prompts"
    },
    "permissions": [
        "contextMenus",
        "storage"
    ],
    "options_page": "options\/index.html",
    "background": {
        "service_worker": "background\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content\/start.js"
            ]
        }
    ]
}