ChatGPT Extension
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.
什么是ChatGPT Extension?
ChatGPT Extension是由Oliver N.开发的Chrome扩展程序,该扩展的主要功能是“This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.”。
扩展截图
下载ChatGPT Extension扩展crx文件
下载ChatGPT Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. Simply click the extension icon in your browser toolbar to activate ChatGPT. ChatGPT is a powerful language model that uses deep learning to produce human-like responses to text input.
扩展基本信息
名称 | ChatGPT Extension |
ID | ehigecokdaejpecogfefhmoemlapfjko |
官方URL | https://chromewebstore.google.com/detail/chatgpt-extension/ehigecokdaejpecogfefhmoemlapfjko |
简介 | This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session. |
文件大小 | 281 KB |
安装次数 | 716 |
当前版本 | 0.1.0 |
更新时间 | 2022-12-21 |
上架时间 | 2022-12-21 |
评分 | 1.00/5 共2次评分 |
开发者 | Oliver N. |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/iOliverNguyen/chatgpt-box-extension |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "action": [], "background": { "service_worker": "background.js" }, "content_scripts": [ { "css": [ "content_script.css" ], "js": [ "content_script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "This extension loads ChatGPT in the current tab, allowing you to use ChatGPT along your working session.", "host_permissions": [ "https:\/\/*\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon96.png", "128": "icon128.png", "512": "icon512.png" }, "manifest_version": 3, "name": "ChatGPT Extension", "version": "0.1.0", "web_accessible_resources": [ { "extension_ids": [], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "resources": [ "assets\/*" ] } ] } |