Anywhere GPT

The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.

O que é Anywhere GPT?

Anywhere GPT é uma extensão do Chrome desenvolvida por besnard.nicolas, e sua principal característica é "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Anywhere GPT

Baixe arquivos de extensão Anywhere GPT 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

                        Anywhere GTP allows you to save those prompt and quickly apply them anywhere you want                    

Informações Básicas da Extensão

Nome Anywhere GPT Anywhere GPT
ID gjlmelmekegnlljjhiidajoopdlnldhd
URL Oficial https://chromewebstore.google.com/detail/anywhere-gpt/gjlmelmekegnlljjhiidajoopdlnldhd
Descrição The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.
Tamanho do Arquivo 158 KB
Contagem de Instalações 37
Versão Atual 1.2
Última Atualização 2023-02-23
Data de Publicação 2023-02-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor besnard.nicolas
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Anywhere GPT",
    "description": "The secret of good ChatGPT answer is a good prompt and good prompts tend to be long.",
    "version": "1.2",
    "manifest_version": 3,
    "action": {
        "default_title": "Configure AnywhereGPT"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/chat*"
            ],
            "run_at": "document_end",
            "js": [
                ".\/inject-prompt.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "background": {
        "service_worker": "background.global.js"
    },
    "icons": {
        "16": "chatgpt.png",
        "48": "chatgpt.png",
        "128": "chatgpt.png"
    },
    "options_ui": {
        "page": "settings\/index.html"
    }
}