ChatGPT Screentshot

Add a button to download full screenshot of ChatGPT conversation

ChatGPT Screentshotとは何ですか?

ChatGPT Screentshotはlandicefuによって開発されたChromeの拡張機能で、その主な機能は「Add a button to download full screenshot of ChatGPT conversation」です。

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

screenshot
screenshot

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

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

拡張機能の使用方法

                        Add two buttons to Chat GPT sidebar. One for downloading the whole conversation as a JPEG file. The other button allows you to download each prompt and answer as different JPEG files. With this plugin installed, you can easily share the conversations on social media or through messaging services more easy than ever.

========== v0.3 Release Notes ==========
- Fix the image shifting problem                    

拡張機能の基本情報

名前 ChatGPT Screentshot ChatGPT Screentshot
ID fnhbogilcfgocmkhionadafjdhmfdgeg
公式URL https://chrome.google.com/webstore/detail/chatgpt-screentshot/fnhbogilcfgocmkhionadafjdhmfdgeg
説明 Add a button to download full screenshot of ChatGPT conversation
ファイルサイズ 56.9 KB
インストール数 145
現在のバージョン 0.3
最終更新日 2022-12-14
公開日 2022-12-11
評価 3.50/5 合計 2 レビュー
開発者 landicefu
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Screentshot",
    "action": [],
    "manifest_version": 3,
    "author": "Landice Fu ",
    "version": "0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "description": "Add a button to download full screenshot of ChatGPT conversation",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat"
            ],
            "js": [
                "content-script.js",
                "html2canvas.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "download_button.svg"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}