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 |
| 公式URL | 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 |
| Eメール | [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
}
]
} | |