ChatGPT Screenshot

Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage

ChatGPT Screenshotとは何ですか?

ChatGPT Screenshotはkuya5220によって開発されたChromeの拡張機能で、その主な機能は「Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage」です。

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

screenshot

ChatGPT Screenshot拡張機能のCRXファイルをダウンロード

ChatGPT Screenshot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        想要保存與ChatGPT的對話,卻覺得一張一張手動截圖太麻煩嗎?使用這個插件,即可透過一次點擊獲取完整的對話紀錄!

Wanna save the conversation content with ChatGPT but too lazy to screenshot one by one? Get this extension to screenshot the complete conversation by one click!                    

拡張機能の基本情報

名前 ChatGPT Screenshot ChatGPT Screenshot
ID ppggknlipehkckcplghjfcoemdeaieme
公式URL https://chromewebstore.google.com/detail/chatgpt-screenshot/ppggknlipehkckcplghjfcoemdeaieme
説明 Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage
ファイルサイズ 90.18 KB
インストール数 549
現在のバージョン 0.0.5
最終更新日 2023-01-03
公開日 2022-12-31
評価 5.00/5 合計 1 レビュー
開発者 kuya5220
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/stu00608/ChatGPT-Screenshot
ヘルプページのURL https://github.com/stu00608/ChatGPT-Screenshot
対応言語 zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screenshot",
    "action": [],
    "manifest_version": 3,
    "version": "0.0.5",
    "description": "Takes a screenshot of the whole conversation in each chat room in a ChatGPT webpage",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "html2canvas.min.js"
            ],
            "run_at": "document_end"
        }
    ]
}