ChatGPT Prompt Library
ChatGPT prompts for everyone
Cos'è ChatGPT Prompt Library?
ChatGPT Prompt Library è un'estensione di Chrome sviluppata da Practical AI, e la sua funzione principale è "ChatGPT prompts for everyone".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ChatGPT Prompt Library
Scarica i file di estensione ChatGPT Prompt Library 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
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.
Informazioni di Base sull'Estensione
Nome | ChatGPT Prompt Library |
ID | kiaoanbjmabpebanpdclaijlhmmcphkh |
URL Ufficiale | https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh |
Descrizione | ChatGPT prompts for everyone |
Dimensione del File | 34.63 KB |
Conteggio Installazioni | 1,625 |
Versione Corrente | 0.1.6 |
Ultimo Aggiornamento | 2023-08-27 |
Data di Pubblicazione | 2023-03-01 |
Valutazione | 3.70/5 Totale 10 Valutazioni |
Sviluppatore | Practical AI |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://linktr.ee/practical.ai |
URL della Pagina di Aiuto | https://linktr.ee/practical.ai |
URL della Pagina della Politica sulla Privacy | https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3 |
Lingue Supportate | 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" ] } ] } |