Stack Copy Button
A copy button for Stack Overflow code boxes
Cos'è Stack Copy Button?
Stack Copy Button è un'estensione di Chrome sviluppata da MrMino, e la sua funzione principale è "A copy button for Stack Overflow code boxes".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Stack Copy Button
Scarica i file di estensione Stack Copy Button 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
Faster code copying from Stack Overflow website! This extension adds a copy button to every code box in stack overflow. Also works with custom layout styles (eg. Stylish). Hover your mouse over the code, click copy, and save time. No text selecting or scrolling required. https://github.com/MrMino/StackCtrlC Made by MrMino I (this extension's author) am not affiliated with Stack Overflow, Stack Exchange, or any other site from Stack Exchange Network.
Informazioni di Base sull'Estensione
Nome | Stack Copy Button |
ID | dkejincbnheemdddmbiggcnlidffpedf |
URL Ufficiale | https://chromewebstore.google.com/detail/stack-copy-button/dkejincbnheemdddmbiggcnlidffpedf |
Descrizione | A copy button for Stack Overflow code boxes |
Dimensione del File | 40.45 KB |
Conteggio Installazioni | 336 |
Versione Corrente | 1.1.1 |
Ultimo Aggiornamento | 2016-04-14 |
Data di Pubblicazione | 2016-04-14 |
Valutazione | 5.00/5 Totale 10 Valutazioni |
Sviluppatore | MrMino |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/MrMino/StackOverflowCtrlC |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Stack Copy Button", "author": "MrMino", "description": "A copy button for Stack Overflow code boxes", "version": "1.1.1", "browser_action": { "default_icon": "icon32.png" }, "icons": { "32": "icon32.png", "128": "icon128.png" }, "permissions": [ "*:\/\/stackoverflow.com\/*", "clipboardWrite" ], "content_scripts": [ { "matches": [ "*:\/\/*.stackoverflow.com\/*" ], "js": [ "jquery-1.12.3.min.js", "copybox.min.js" ] } ] } |