ChatGPT Copy Button Extension

Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste

Was ist ChatGPT Copy Button Extension?

ChatGPT Copy Button Extension ist eine Chrome-Erweiterung, die von jonathankelmanc entwickelt wurde, und ihr Hauptmerkmal ist "Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste".

Erweiterungsscreenshots

screenshot

ChatGPT Copy Button Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie ChatGPT Copy Button Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        **UPDATE 23 Nov 2023**
Open AI updated there UI so we needed to update our button. ITS ALL WORKING! :)

 Copy Button for ChatGPT Chats!

Have you ever found yourself wanting to copy a message from a ChatGPT conversation but struggling with the awkward copy and paste functionality? Our extension solves this problem by adding a simple "Copy" button to each message in the chat.

With the Copy Button for ChatGPT Chats, you can quickly and easily copy any message with just one click, saving you time and effort. Whether you're trying to share a message with a colleague or save it for later reference, our extension makes it easy to get the job done.

Installation is a breeze - simply add the extension to your Chrome browser and start using it right away. Say goodbye to clunky copy and paste and hello to smooth, effortless copying with the Copy Button for ChatGPT Chats. Try it out today!

If you got here cool! hows it going? :)                    

Grundlegende Informationen zur Erweiterung

Name ChatGPT Copy Button Extension ChatGPT Copy Button Extension
ID ijcnijalaeoggpcklpfaijinjjnlochp
Offizielle URL https://chromewebstore.google.com/detail/chatgpt-copy-button-exten/ijcnijalaeoggpcklpfaijinjjnlochp
Beschreibung Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste
Dateigröße 34.45 KB
Installationsanzahl 10,000
Aktuelle Version 3.0
Letztes Update 2023-11-24
Veröffentlichungsdatum 2023-01-30
Bewertung 3.24/5 Insgesamt 21 Bewertungen
Entwickler jonathankelmanc
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ChatGPT Copy Button Extension",
    "version": "3.0",
    "description": "Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste",
    "icons": {
        "128": ".\/images\/128.png",
        "48": ".\/images\/128.png",
        "32": ".\/images\/32.png",
        "16": ".\/images\/16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "permissions": [
        "clipboardWrite"
    ]
}