Copy-Code

Creates a copy to clipboard button on every code text.

Cos'è Copy-Code?

Copy-Code è un'estensione di Chrome sviluppata da João da Torre Pereira, e la sua funzione principale è "Creates a copy to clipboard button on every code text.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Copy-Code

Scarica i file di estensione Copy-Code in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Appends a button to all code snippets to instantly copy the code to clipboard. Extension available for stackoverflow.com, moodle.up.pt and much more.

This project is open source and you also can contribute with ideas                    

Informazioni di Base sull'Estensione

Nome Copy-Code Copy-Code
ID heokjaibaafegafgaaodfgjjgjffnenk
URL Ufficiale https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk
Descrizione Creates a copy to clipboard button on every code text.
Dimensione del File 569 KB
Conteggio Installazioni 226
Versione Corrente 1.3
Ultimo Aggiornamento 2023-08-05
Data di Pubblicazione 2022-06-01
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore João da Torre Pereira
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/thePeras/copy-code-extension
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Copy-Code",
    "version": "1.3",
    "description": "Creates a copy to clipboard button on every code text.",
    "icons": {
        "48": "icons\/copy-48.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackoverflow.com\/*",
                "https:\/\/stackoverflowteams.com\/*",
                "https:\/\/*.stackexchange.com\/*",
                "https:\/\/serverfault.com\/*",
                "https:\/\/superuser.com\/*",
                "https:\/\/askubuntu.com\/*",
                "https:\/\/moodle.up.pt\/*",
                "https:\/\/www.w3resource.com\/*",
                "https:\/\/w3resource.com\/*",
                "https:\/\/villate.org\/*",
                "https:\/\/*.medium.com\/*",
                "https:\/\/www.npmjs.com\/*",
                "https:\/\/forums.raspberrypi.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}