Header Tags Copier

Copy all header tags (h1-h6) to clipboard

Cos'è Header Tags Copier?

Header Tags Copier è un'estensione di Chrome sviluppata da https://ac2a.com, e la sua funzione principale è "Copy all header tags (h1-h6) to clipboard".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Header Tags Copier

Scarica i file di estensione Header Tags Copier 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

                        Header Tags Copier is a convenient Chrome add-on designed to quickly and effortlessly copy all header tags (h1 to h6) from any webpage you visit. With a simple click of the extension's icon, the add-on extracts header tags along with their respective types (e.g., H1, H2, etc.) and copies them to your clipboard. A notification confirms the successful completion of the process, allowing you to easily paste the copied headers into a text document for further reference or analysis. This user-friendly tool is perfect for content creators, researchers, or anyone who frequently works with web content and wants to streamline their workflow.                    

Informazioni di Base sull'Estensione

Nome Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
URL Ufficiale https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
Descrizione Copy all header tags (h1-h6) to clipboard
Dimensione del File 4.6 KB
Conteggio Installazioni 68
Versione Corrente 1.9
Ultimo Aggiornamento 2023-03-30
Data di Pubblicazione 2023-03-28
Sviluppatore https://ac2a.com
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://www.ac2a.com/contact-me/
URL della Pagina della Politica sulla Privacy https://www.ac2a.com/privacy-policy
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Header Tags Copier",
    "version": "1.9",
    "description": "Copy all header tags (h1-h6) to clipboard",
    "icons": {
        "48": "icon.png"
    },
    "permissions": [
        "activeTab",
        "clipboardWrite",
        "notifications"
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}