GPT Anywhere

Get GPT completions on any webpage.

O que é GPT Anywhere?

GPT Anywhere é uma extensão do Chrome desenvolvida por hotspringsclap, e sua principal característica é "Get GPT completions on any webpage.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GPT Anywhere

Baixe arquivos de extensão GPT Anywhere no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome GPT Anywhere GPT Anywhere
ID lbbhclbmgmfepdapeapakepecldndpin
URL Oficial https://chromewebstore.google.com/detail/gpt-anywhere/lbbhclbmgmfepdapeapakepecldndpin
Descrição Get GPT completions on any webpage.
Tamanho do Arquivo 159 KB
Contagem de Instalações 404
Versão Atual 1.2.0
Última Atualização 2023-04-25
Data de Publicação 2023-02-20
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor hotspringsclap
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/CheeseDurger/gpt-anywhere
URL da Página de Ajuda https://github.com/CheeseDurger/gpt-anywhere/issues/new
Idiomas Suportados 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"
            ]
        }
    ]
}