GPT Everywhere
Use ChatGPT on the whole internet.
Τι είναι το GPT Everywhere;
Το GPT Everywhere είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ptmr, και η κύρια λειτουργία του είναι "Use ChatGPT on the whole internet.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GPT Everywhere
Λήψη αρχείων επέκτασης GPT Everywhere σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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" } } |