ChatGPT Prompt Library
ChatGPT prompts for everyone
Was ist ChatGPT Prompt Library?
ChatGPT Prompt Library ist eine Chrome-Erweiterung, die von Practical AI entwickelt wurde, und ihr Hauptmerkmal ist "ChatGPT prompts for everyone".
Erweiterungsscreenshots
ChatGPT Prompt Library-Erweiterungs-CRX-Datei herunterladen
Laden Sie ChatGPT Prompt Library-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kiaoanbjmabpebanpdclaijlhmmcphkh |
| Offizielle URL | https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh |
| Beschreibung | ChatGPT prompts for everyone |
| Dateigröße | 34.63 KB |
| Installationsanzahl | 1,625 |
| Aktuelle Version | 0.1.6 |
| Letztes Update | 2023-08-27 |
| Veröffentlichungsdatum | 2023-03-01 |
| Bewertung | 3.70/5 Insgesamt 10 Bewertungen |
| Entwickler | Practical AI |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://linktr.ee/practical.ai |
| Hilfeseite URL | https://linktr.ee/practical.ai |
| URL der Datenschutzrichtlinien-Seite | https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3 |
| Unterstützte Sprachen | 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"
]
}
]
} | |