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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an extension to copy conversations with ChatGPT to the clipboard as markdown format. Click the icon or use the shortcut…"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ChatGPT Copy as Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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
        }
    ]
}