PromptGPT: Prompts for ChatGPT
Save your most used prompts in ChatGPT!
Was ist PromptGPT: Prompts for ChatGPT?
PromptGPT: Prompts for ChatGPT ist eine Chrome-Erweiterung, die von https://promptgpt.co entwickelt wurde, und ihr Hauptmerkmal ist "Save your most used prompts in ChatGPT!".
Erweiterungsscreenshots
PromptGPT: Prompts for ChatGPT-Erweiterungs-CRX-Datei herunterladen
Laden Sie PromptGPT: Prompts for ChatGPT-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
Clear, detailed prompts unlock ChatGPT's potential. PromptGPT helps you save the best and get high-quality responses with ease!
🚀 Prompt Bar
Press “/” anywhere to quickly browse and select a saved prompt.
✍️ Rich Template Engine
Give a shortcut to fill a saved prompt. Pass in custom values when using a shortcut. Or not, it also supports default values.
📙 Custom Workflow
Build your dictionary to fit your workflow. Take a look at the examples to get started.
⌨ Keyboard Navigation
Navigate prompt bar with arrow keys and quickly save your last prompt (^ + shift + s).
⚙️ Easy Access
Access your prompt library by right-clicking the extension icon in your browser's extension bar and pressing "options".
This extension is in active development, feedback is greatly appreciated! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | pkjccaeilmgpheecbmkmnckanijinppj |
| Offizielle URL | https://chromewebstore.google.com/detail/promptgpt-prompts-for-cha/pkjccaeilmgpheecbmkmnckanijinppj |
| Beschreibung | Save your most used prompts in ChatGPT! |
| Dateigröße | 446 KB |
| Installationsanzahl | 597 |
| Aktuelle Version | 1.0.11 |
| Letztes Update | 2023-04-18 |
| Veröffentlichungsdatum | 2022-12-23 |
| Bewertung | 3.50/5 Insgesamt 2 Bewertungen |
| Entwickler | https://promptgpt.co |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://eeshu.notion.site/Privacy-Policy-1927d56240ee4f28ab87fbc1494baaad |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PromptGPT: Prompts for ChatGPT",
"description": "Save your most used prompts in ChatGPT!",
"version": "1.0.11",
"icons": {
"128": "icon_128.png",
"48": "icon_48.png"
},
"options_page": "options.html",
"action": [],
"content_scripts": [
{
"matches": [
"https:\/\/chat.openai.com\/chat*"
],
"run_at": "document_end",
"js": [
"js\/chat_gpt.js"
]
},
{
"matches": [
"https:\/\/promptgpt.co\/*"
],
"run_at": "document_end",
"js": [
"js\/prompt_gpt.js"
]
}
],
"background": {
"service_worker": "js\/background.js"
},
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/www.google-analytics.com\/mp\/collect*"
]
} | |