Copy HTML
Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
Was ist Copy HTML?
Copy HTML ist eine Chrome-Erweiterung, die von Justin Mahar entwickelt wurde, und ihr Hauptmerkmal ist "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".
Erweiterungsscreenshots
Copy HTML-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy HTML-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Copy HTML |
ID | indfogjkdbmkihaohndcnkoaheopbhjf |
Offizielle URL | https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf |
Beschreibung | Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut. |
Dateigröße | 112 KB |
Installationsanzahl | 79 |
Aktuelle Version | 2.0.2 |
Letztes Update | 2023-10-23 |
Veröffentlichungsdatum | 2023-09-14 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Justin Mahar |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/justinmahar/chrome-copy-html |
URL der Datenschutzrichtlinien-Seite | https://justinmahar.com/privacy |
Unterstützte Sprachen | 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" } } |