Copy-Code

Creates a copy to clipboard button on every code text.

Hvad er Copy-Code?

Copy-Code er en Chrome-udvidelse udviklet af João da Torre Pereira, og dens hovedfunktion er "Creates a copy to clipboard button on every code text.".

Udvidelsesskærmbilleder

screenshot

Download Copy-Code-udvidelses-CRX-fil

Download Copy-Code-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Copy-Code Copy-Code
ID heokjaibaafegafgaaodfgjjgjffnenk
Officiel URL https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk
Beskrivelse Creates a copy to clipboard button on every code text.
Filstørrelse 569 KB
Antal Installationer 226
Nuværende Version 1.3
Senest Opdateret 2023-08-05
Udgivelsesdato 2022-06-01
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler João da Torre Pereira
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/thePeras/copy-code-extension
Understøttede Sprog 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"
            ]
        }
    ]
}