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 |
电子邮箱 | [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" } } |