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

Τι είναι το ChatGPT Copy Button Extension;

Το ChatGPT Copy Button Extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jonathankelmanc, και η κύρια λειτουργία του είναι "Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ChatGPT Copy Button Extension

Λήψη αρχείων επέκτασης ChatGPT Copy Button Extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        **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? :)                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ChatGPT Copy Button Extension ChatGPT Copy Button Extension
ID ijcnijalaeoggpcklpfaijinjjnlochp
Επίσημο URL https://chromewebstore.google.com/detail/chatgpt-copy-button-exten/ijcnijalaeoggpcklpfaijinjjnlochp
Περιγραφή Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste
Μέγεθος Αρχείου 34.45 KB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 3.0
Τελευταία Ενημέρωση 2023-11-24
Ημερομηνία Δημοσίευσης 2023-01-30
Αξιολόγηση 3.24/5 Συνολικά 21 Αξιολογήσεις
Προγραμματιστής jonathankelmanc
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
    ]
}