ChatGPT Prompts

ChatGPT Prompts

O que é ChatGPT Prompts?

ChatGPT Prompts é uma extensão do Chrome desenvolvida por Cem PEHLİVAN, e sua principal característica é "ChatGPT Prompts".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão ChatGPT Prompts

Baixe arquivos de extensão ChatGPT Prompts 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

                        This is a collection of prompt examples to be used with the ChatGPT model.

The ChatGPT model is a large language model trained by OpenAI that is capable of generating human-like text. By providing it with a prompt, it can generate responses that continue the conversation or expand on the given prompt.

In this extension, you will find a variety of prompts that can be used with ChatGPT. 

Enter "https://chat.openai.com/chat". Thanks to this plugin, you will see ready prompts prepared for you on the homepage.

We hope you find these prompts useful and have fun using ChatGPT!

Thanks! https://github.com/f/awesome-chatgpt-prompts                    

Informações Básicas da Extensão

Nome ChatGPT Prompts ChatGPT Prompts
ID igaldenhhkaelahplnglcdcfmmhhmgdj
URL Oficial https://chromewebstore.google.com/detail/chatgpt-prompts/igaldenhhkaelahplnglcdcfmmhhmgdj
Descrição ChatGPT Prompts
Tamanho do Arquivo 31.55 KB
Contagem de Instalações 10,000
Versão Atual 0.3.0
Última Atualização 2023-03-01
Data de Publicação 2022-12-21
Classificação 3.77/5 Total de 13 Avaliações
Desenvolvedor Cem PEHLİVAN
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
URL da Página de Ajuda https://github.com/cempehlivan/chatgpt-prompt-chrome-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Prompts",
    "version": "0.3.0",
    "description": "ChatGPT Prompts",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "ChatGPT Prompts"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}