ChatGPT Copy as Markdown

This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…

ChatGPT Copy as Markdownとは何ですか?

ChatGPT Copy as Markdownはmild7caloriemategreenteaによって開発されたChromeの拡張機能で、その主な機能は「This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…」です。

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

screenshot

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

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

拡張機能の使用方法

                        This is an extension to copy conversations with ChatGPT to the clipboard as markdown format.
Click the icon or use the shortcut keys (Alt+Shift+A) to copy the contents of the conversation in the tab you are viewing                    

拡張機能の基本情報

名前 ChatGPT Copy as Markdown ChatGPT Copy as Markdown
ID abnaignolljmbhljfenjgedomihcdkmn
公式URL https://chromewebstore.google.com/detail/chatgpt-copy-as-markdown/abnaignolljmbhljfenjgedomihcdkmn
説明 This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…
ファイルサイズ 87.61 KB
インストール数 95
現在のバージョン 0.0.3
最終更新日 2023-04-25
公開日 2023-03-20
評価 4.50/5 合計 2 レビュー
開発者 mild7caloriemategreentea
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Copy as Markdown",
    "version": "0.0.3",
    "background": {
        "service_worker": "service-worker-loader.js",
        "type": "module"
    },
    "action": [],
    "content_scripts": [
        {
            "js": [
                "assets\/content-script-loader.content-script.ts.e5f55049.68e713a0.js"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/c\/*"
            ]
        }
    ],
    "icons": {
        "16": "image\/16x16.png",
        "48": "image\/48x48.png",
        "128": "image\/128x128.png"
    },
    "commands": {
        "chatgpt-copy-as-markdown": {
            "suggested_key": {
                "default": "Alt+Shift+A"
            },
            "description": "Copy Conversation with ChatGPT as markdown"
        }
    },
    "permissions": [
        "activeTab",
        "clipboardWrite"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "resources": [
                "assets\/logger.33b921cf.js",
                "assets\/content-script.ts.e5f55049.js"
            ],
            "use_dynamic_url": true
        }
    ]
}