ChatGPT Plus
ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.
什麼是ChatGPT Plus?
ChatGPT Plus是由zerodocom開發的Chrome擴展程式,該擴展的主要功能是“ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.”。
擴展截圖
下載ChatGPT Plus擴展crx文件
下載ChatGPT Plus擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A browser plugin that enhances the ability of ChatGPT.
The source code is available on GitHub: https://github.com/zerodocom/ChatGPT-Plus 擴展基本資訊
| 名稱 | |
| ID | pkdcpohhilpdgdooafpjnenmnhgbmdmh |
| 官方網址 | https://chromewebstore.google.com/detail/chatgpt-plus/pkdcpohhilpdgdooafpjnenmnhgbmdmh |
| 簡介 | ChatGPT Plus is a plugin designed to enhance the conversational experience with AI. |
| 檔案大小 | 352 KB |
| 安裝次數 | 2,340 |
| 目前版本 | 1.0.2 |
| 更新時間 | 2023-05-22 |
| 上架時間 | 2023-01-02 |
| 評分 | 4.00/5 共 5 次評分 |
| 開發者 | zerodocom |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/zerodocom/ChatGPT-Plus |
| 說明頁面URL | https://github.com/zerodocom/ChatGPT-Plus |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "ChatGPT Plus",
"manifest_version": 3,
"description": "ChatGPT Plus is a plugin designed to enhance the conversational experience with AI.",
"version": "1.0.2",
"icons": {
"16": "img\/logo.png",
"32": "img\/logo.png",
"48": "img\/logo.png",
"128": "img\/logo.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "img\/logo.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"content.ts-loader.js"
],
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [
"content.css"
]
}
],
"options_page": "options.html",
"permissions": [
"contextMenus",
"storage",
"webRequest"
],
"host_permissions": [
"http:\/\/*\/",
"https:\/\/*\/"
],
"web_accessible_resources": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"resources": [
"content.css",
"options.css",
"vue-router.css"
],
"use_dynamic_url": false
},
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"resources": [
"assets\/defaults-e73e6c0c.js",
"assets\/apiServer-3ddd2659.js",
"assets\/content.ts-293e4619.js"
],
"use_dynamic_url": true
}
]
} | |