Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
O que é Copy HTML?
Copy HTML é uma extensão do Chrome desenvolvida por Justin Mahar, e sua principal característica é "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Copy HTML
Baixe arquivos de extensão Copy HTML no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
URL Oficial | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
Descrição | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
Tamanho do Arquivo | 112 KB |
Contagem de Instalações | 79 |
Versão Atual | 2.0.2 |
Última Atualização | 2023-10-23 |
Data de Publicação | 2023-09-14 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Justin Mahar |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/justinmahar/chrome-copy-html |
URL da Página de Política de Privacidade | https://justinmahar.com/privacy |
Idiomas Suportados | 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" } } |