GPT Everywhere
Use ChatGPT on the whole internet.
GPT Everywhereとは何ですか?
GPT Everywhereはptmrによって開発されたChromeの拡張機能で、その主な機能は「Use ChatGPT on the whole internet.」です。
拡張機能のスクリーンショット
GPT Everywhere拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } } |