ChatGPT Prompts
ChatGPT Prompts
Τι είναι το ChatGPT Prompts;
Το ChatGPT Prompts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Cem PEHLİVAN, και η κύρια λειτουργία του είναι "ChatGPT Prompts".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης ChatGPT Prompts
Λήψη αρχείων επέκτασης ChatGPT Prompts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This is a collection of prompt examples to be used with the ChatGPT model. 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. In this extension, you will find a variety of prompts that can be used with ChatGPT. Enter "https://chat.openai.com/chat". Thanks to this plugin, you will see ready prompts prepared for you on the homepage. We hope you find these prompts useful and have fun using ChatGPT! Thanks! https://github.com/f/awesome-chatgpt-prompts
Βασικές Πληροφορίες Επέκτασης
Όνομα | ChatGPT Prompts |
ID | igaldenhhkaelahplnglcdcfmmhhmgdj |
Επίσημο URL | https://chromewebstore.google.com/detail/chatgpt-prompts/igaldenhhkaelahplnglcdcfmmhhmgdj |
Περιγραφή | ChatGPT Prompts |
Μέγεθος Αρχείου | 31.55 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 0.3.0 |
Τελευταία Ενημέρωση | 2023-03-01 |
Ημερομηνία Δημοσίευσης | 2022-12-21 |
Αξιολόγηση | 3.77/5 Συνολικά 13 Αξιολογήσεις |
Προγραμματιστής | Cem PEHLİVAN |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/cempehlivan/chatgpt-prompt-chrome-extension |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/cempehlivan/chatgpt-prompt-chrome-extension |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Prompts", "version": "0.3.0", "description": "ChatGPT Prompts", "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 Prompts" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ] } |