ChatGPT Prompt Library
ChatGPT prompts for everyone
ChatGPT Prompt Library क्या है?
ChatGPT Prompt Library Practical AI द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "ChatGPT prompts for everyone"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Prompt Library एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT Prompt Library |
ID | kiaoanbjmabpebanpdclaijlhmmcphkh |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-prompt-library/kiaoanbjmabpebanpdclaijlhmmcphkh |
विवरण | ChatGPT prompts for everyone |
फ़ाइल का आकार | 34.63 KB |
स्थापना संख्या | 1,625 |
वर्तमान संस्करण | 0.1.6 |
अंतिम अपडेट | 2023-08-27 |
प्रकाशन तिथि | 2023-03-01 |
रेटिंग | 3.70/5 कुल 10 रेटिंग्स |
डेवलपर | Practical AI |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://linktr.ee/practical.ai |
सहायता पृष्ठ URL | https://linktr.ee/practical.ai |
गोपनीयता नीति पृष्ठ URL | https://medium.com/@Practical.AI/our-google-chrome-extensions-301c21ad48d3 |
समर्थित भाषाएँ | 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" ] } ] } |