GPT Everywhere
Use ChatGPT on the whole internet.
GPT Everywhere क्या है?
GPT Everywhere ptmr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Use ChatGPT on the whole internet."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GPT Everywhere एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is a Chrome/Edge extension that allows you to use the OpenAI GPT-3 API to generate text in any textarea or textfield on the web. Lightweight and fast, vanilla JavaScript, no dependencies. Usage Instructions First go to extension settings and enter an OpenAI API Key. You may generate a new API Key from https://beta.openai.com/account/api-keys Press Ctrl + . anywhere on the web. Type a command in the command field, e.g. "Write an E-Mail reply" Any selected text will autofill the context field. If the source field from which you started the interation is an a textarea or textfield, the result will show in this element. Else it will be pasted into the context field.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | nkfclenpjlmkpoaopeaoioodcefhnebj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/gpt-everywhere/nkfclenpjlmkpoaopeaoioodcefhnebj |
विवरण | Use ChatGPT on the whole internet. |
फ़ाइल का आकार | 233 KB |
स्थापना संख्या | 136 |
वर्तमान संस्करण | 1.3.1 |
अंतिम अपडेट | 2023-01-21 |
प्रकाशन तिथि | 2023-01-10 |
रेटिंग | 3.00/5 कुल 2 रेटिंग्स |
डेवलपर | ptmr |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/ptmrio/gpt-everywhere |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "GPT Everywhere", "description": "Use ChatGPT on the whole internet.", "version": "1.3.1", "action": { "default_popup": "gpt.html", "default_icon": ".\/img\/logo-32x32.png" }, "permissions": [ "clipboardWrite", "clipboardRead", "storage", "activeTab", "scripting" ], "icons": { "16": ".\/img\/logo-16x16.png", "32": ".\/img\/logo-32x32.png", "192": ".\/img\/logo-192x192.png" }, "host_permissions": [ "https:\/\/api.openai.com\/" ], "options_page": "options.html", "commands": { "gptShowPrompt": { "suggested_key": { "windows": "Ctrl+Period", "mac": "Command+Period", "chromeos": "Ctrl+Period", "linux": "Ctrl+Period" }, "description": "Run GPT on the current page." } }, "background": { "service_worker": "background.js" } } |