ChatGPT Sidebar for Chrome
Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.
什么是ChatGPT Sidebar for Chrome?
ChatGPT Sidebar for Chrome是由GPTcore Studio开发的Chrome扩展程序,该扩展的主要功能是“Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.”。
扩展截图
下载ChatGPT Sidebar for Chrome扩展crx文件
下载ChatGPT Sidebar for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
No wasting time anymore! Use ChatGPT Sidebar to use ChatGPT in all tabs, instead of switching between browser tabs. You need to have an OpenAI Account.
扩展基本信息
名称 | ChatGPT Sidebar for Chrome |
ID | ofoglgkkfchhiomfffhgeeeklfbnncpf |
官方URL | https://chromewebstore.google.com/detail/chatgpt-sidebar-for-chrom/ofoglgkkfchhiomfffhgeeeklfbnncpf |
简介 | Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs. |
文件大小 | 1.25 MB |
安装次数 | 228 |
当前版本 | 1.0.0.0 |
更新时间 | 2023-09-11 |
上架时间 | 2023-09-11 |
评分 | 5.00/5 共1次评分 |
开发者 | GPTcore Studio |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://gptcorestudio.netlify.app |
隐私政策页面URL | https://gptcorestudio.com/legal/privacy |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Sidebar for Chrome", "description": "Use ChatGPT in sidebar. You won't need to waste time swiching between ChatGPT and other tabs.", "version": "1.0.0.0", "background": { "service_worker": "\/background.js" }, "icons": { "16": "\/assets\/images\/ChatGPTIcon.png", "48": "\/assets\/images\/ChatGPTIcon.png", "128": "\/assets\/images\/ChatGPTIcon.png" }, "side_panel": { "default_path": "panel.html", "openPanelOnActionClick": true }, "offline_enabled": true, "permissions": [ "sidePanel" ], "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "\/background.js" ] } ] } |