Copy-Code
Creates a copy to clipboard button on every code text.
Wat is Copy-Code?
Copy-Code is een Chrome-extensie ontwikkeld door João da Torre Pereira, en de belangrijkste functie is "Creates a copy to clipboard button on every code text.".
Extensie Screenshots
Download het CRX-bestand van de extensie Copy-Code
Download Copy-Code-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Copy-Code |
ID | heokjaibaafegafgaaodfgjjgjffnenk |
Officiële URL | https://chromewebstore.google.com/detail/copy-code/heokjaibaafegafgaaodfgjjgjffnenk |
Beschrijving | Creates a copy to clipboard button on every code text. |
Bestandsgrootte | 569 KB |
Aantal Installaties | 226 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2023-08-05 |
Publicatiedatum | 2022-06-01 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | João da Torre Pereira |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/thePeras/copy-code-extension |
Ondersteunde Talen | 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" ] } ] } |