ChatGPT Plus
ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
ChatGPT Plus क्या है?
ChatGPT Plus zerodocom द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT Plus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
A browser plugin that enhances the ability of ChatGPT. The source code is available on GitHub: https://github.com/zerodocom/ChatGPT-Plus
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT Plus |
ID | pkdcpohhilpdgdooafpjnenmnhgbmdmh |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh |
विवरण | ChatGPT Plus is a plugin designed to enhance the conversational experience with AI. |
फ़ाइल का आकार | 352 KB |
स्थापना संख्या | 2,340 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2023-05-22 |
प्रकाशन तिथि | 2023-01-02 |
रेटिंग | 4.00/5 कुल 5 रेटिंग्स |
डेवलपर | zerodocom |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/zerodocom/ChatGPT-Plus |
सहायता पृष्ठ URL | https://github.com/zerodocom/ChatGPT-Plus |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ChatGPT Plus", "manifest_version": 3, "description": "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.", "version": "1.0.2", "icons": { "16": "img\/logo.png", "32": "img\/logo.png", "48": "img\/logo.png", "128": "img\/logo.png" }, "action": { "default_popup": "popup.html", "default_icon": "img\/logo.png" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "content_scripts": [ { "js": [ "content.ts-loader.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "content.css" ] } ], "options_page": "options.html", "permissions": [ "contextMenus", "storage", "webRequest" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/" ], "web_accessible_resources": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "content.css", "options.css", "vue-router.css" ], "use_dynamic_url": false }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "assets\/defaults-e73e6c0c.js", "assets\/apiServer-3ddd2659.js", "assets\/content.ts-293e4619.js" ], "use_dynamic_url": true } ] } |