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.」です。

拡張機能のスクリーンショット

screenshot

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 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.
Eメール [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\/*"
            ]
        }
    ]
}