GPT Anywhere

Get GPT completions on any webpage.

Cos'è GPT Anywhere?

GPT Anywhere è un'estensione di Chrome sviluppata da hotspringsclap, e la sua funzione principale è "Get GPT completions on any webpage.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione GPT Anywhere

Scarica i file di estensione GPT Anywhere in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
URL Ufficiale https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
Descrizione Get GPT completions on any webpage.
Dimensione del File 159 KB
Conteggio Installazioni 404
Versione Corrente 1.2.0
Ultimo Aggiornamento 2023-04-25
Data di Pubblicazione 2023-02-20
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore hotspringsclap
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/CheeseDurger/gpt-anywhere
URL della Pagina di Aiuto https://github.com/CheeseDurger/gpt-anywhere/issues/new
Lingue Supportate 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"
            ]
        }
    ]
}