Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
Cos'è Copy HTML?
Copy HTML è un'estensione di Chrome sviluppata da Justin Mahar, e la sua funzione principale è "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy HTML
Scarica i file di estensione Copy HTML 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
Button method: 1. Click the extension icon 2. Click "Copy HTML" button 3. HTML is copied to clipboard Keyboard shortcut method: 1. Click the page 2. Press the keyboard shortcut: Ctrl+Shift+Alt+C 3. HTML is copied to clipboard Quick, simple, and easy!
Informazioni di Base sull'Estensione
Nome | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
URL Ufficiale | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
Descrizione | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
Dimensione del File | 112 KB |
Conteggio Installazioni | 79 |
Versione Corrente | 2.0.2 |
Ultimo Aggiornamento | 2023-10-23 |
Data di Pubblicazione | 2023-09-14 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Justin Mahar |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/justinmahar/chrome-copy-html |
URL della Pagina della Politica sulla Privacy | https://justinmahar.com/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy HTML", "description": "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.", "version": "2.0.2", "manifest_version": 3, "content_scripts": [ { "js": [ "src\/_js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "action": { "default_popup": "src\/popup\/popup.html", "default_icon": "images\/icon-512.png" }, "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png", "256": "images\/icon-256.png", "512": "images\/icon-512.png" } } |