ChatGPT Prompt Library
ChatGPT prompts for everyone
O que é ChatGPT Prompt Library?
ChatGPT Prompt Library é uma extensão do Chrome desenvolvida por Practical AI, e sua principal característica é "ChatGPT prompts for everyone".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT Prompt Library
Baixe arquivos de extensão ChatGPT Prompt Library 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 prompts to be used with the ChatGPT. Browse them in the Chrome window or download as a .csv file. Isn't it convenient? ;) 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. Visit "https://chat.openai.com/chat" to use this extension.
Informações Básicas da Extensão
Nome | ChatGPT Prompt Library |
ID | kiaoanbjmabpebanpdclaijlhmmcphkh |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh |
Descrição | ChatGPT prompts for everyone |
Tamanho do Arquivo | 34.63 KB |
Contagem de Instalações | 1,625 |
Versão Atual | 0.1.6 |
Última Atualização | 2023-08-27 |
Data de Publicação | 2023-03-01 |
Classificação | 3.70/5 Total de 10 Avaliações |
Desenvolvedor | Practical AI |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://linktr.ee/practical.ai |
URL da Página de Ajuda | https://linktr.ee/practical.ai |
URL da Página de Política de Privacidade | https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3 |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Prompt Library", "version": "0.1.6", "description": "ChatGPT prompts for everyone", "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 Prompt Library", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |