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 |
官方網址 | 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\/*" ] } ] } |