ChatGPT Prompts
ChatGPT Prompts
ChatGPT Prompts क्या है?
ChatGPT Prompts Cem PEHLİVAN द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "ChatGPT Prompts"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Prompts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |