Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
What is Copy HTML?
Copy HTML is a Chrome extension developed by Justin Mahar, and its main feature is "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
Extension Screenshots
Download Copy HTML Extension CRX File
Download Copy HTML extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
Official URL | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
Description | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
File Size | 112 KB |
Installation Count | 79 |
Current Version | 2.0.2 |
Last Updated | 2023-10-23 |
Publish Date | 2023-09-14 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Justin Mahar |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/justinmahar/chrome-copy-html |
Privacy Policy Page URL | https://justinmahar.com/privacy |
Supported Languages | 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" } } |