Copy-Code
Creates a copy to clipboard button on every code text.
Was ist Copy-Code?
Copy-Code ist eine Chrome-Erweiterung, die von João da Torre Pereira entwickelt wurde, und ihr Hauptmerkmal ist "Creates a copy to clipboard button on every code text.".
Erweiterungsscreenshots
Copy-Code-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy-Code-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
                        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                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | heokjaibaafegafgaaodfgjjgjffnenk | 
| Offizielle URL | https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk | 
| Beschreibung | Creates a copy to clipboard button on every code text. | 
| Dateigröße | 569 KB | 
| Installationsanzahl | 226 | 
| Aktuelle Version | 1.3 | 
| Letztes Update | 2023-08-05 | 
| Veröffentlichungsdatum | 2022-06-01 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | João da Torre Pereira | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/thePeras/copy-code-extension | 
| Unterstützte Sprachen | 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"
            ]
        }
    ]
}  |  |