Copy-Code

Creates a copy to clipboard button on every code text.

Vad är Copy-Code?

Copy-Code är en Chrome-tillägg utvecklad av João da Torre Pereira, och dess huvudfunktion är "Creates a copy to clipboard button on every code text.".

Tilläggsskärmbilder

screenshot

Ladda ner Copy-Code-förlängningens CRX-fil

Ladda ner Copy-Code-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Copy-Code Copy-Code
ID heokjaibaafegafgaaodfgjjgjffnenk
Officiell webbadress https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk
Beskrivning Creates a copy to clipboard button on every code text.
Filstorlek 569 KB
Antal Installationer 226
Aktuell Version 1.3
Senast Uppdaterad 2023-08-05
Publiceringsdatum 2022-06-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare João da Torre Pereira
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/thePeras/copy-code-extension
Stödda Språk 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"
            ]
        }
    ]
}