Copy HTML

Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.

Hvad er Copy HTML?

Copy HTML er en Chrome-udvidelse udviklet af Justin Mahar, og dens hovedfunktion er "Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.".

Udvidelsesskærmbilleder

screenshot

Download Copy HTML-udvidelses-CRX-fil

Download Copy HTML-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Copy HTML Copy HTML
ID indfogjkdbmkihaohndcnkoaheopbhjf
Officiel URL https://chromewebstore.google.com/detail/copy-html/indfogjkdbmkihaohndcnkoaheopbhjf
Beskrivelse Easily copy any page's HTML element to the clipboard with the press of a button or keyboard shortcut.
Filstørrelse 112 KB
Antal Installationer 79
Nuværende Version 2.0.2
Senest Opdateret 2023-10-23
Udgivelsesdato 2023-09-14
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Justin Mahar
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/justinmahar/chrome-copy-html
URL til Fortrolighedspolitik Side https://justinmahar.com/privacy
Understøttede Sprog 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"
    }
}