ChatGPT Prompt Library
ChatGPT prompts for everyone
Co to jest ChatGPT Prompt Library?
ChatGPT Prompt Library to rozszerzenie Chrome opracowane przez Practical AI, a jego główną funkcją jest „ChatGPT prompts for everyone”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia ChatGPT Prompt Library
Pobierz pliki rozszerzeń ChatGPT Prompt Library w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | ChatGPT Prompt Library |
ID | kiaoanbjmabpebanpdclaijlhmmcphkh |
Oficjalny URL | https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh |
Opis | ChatGPT prompts for everyone |
Rozmiar pliku | 34.63 KB |
Liczba instalacji | 1,625 |
Aktualna Wersja | 0.1.6 |
Ostatnia Aktualizacja | 2023-08-27 |
Data Publikacji | 2023-03-01 |
Ocena | 3.70/5 Łącznie 10 Oceny |
Deweloper | Practical AI |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://linktr.ee/practical.ai |
Adres URL Strony Pomocy | https://linktr.ee/practical.ai |
Adres URL Strony Polityki Prywatności | https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3 |
Obsługiwane Języki | 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" ] } ] } |