Header Tags Copier

Copy all header tags (h1-h6) to clipboard

Wat is Header Tags Copier?

Header Tags Copier is een Chrome-extensie ontwikkeld door https://ac2a.com, en de belangrijkste functie is "Copy all header tags (h1-h6) to clipboard".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Header Tags Copier

Download Header Tags Copier-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
Officiële URL https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
Beschrijving Copy all header tags (h1-h6) to clipboard
Bestandsgrootte 4.6 KB
Aantal Installaties 68
Huidige Versie 1.9
Laatst Bijgewerkt 2023-03-30
Publicatiedatum 2023-03-28
Ontwikkelaar https://ac2a.com
E-mail [email protected]
Betalingswijze free
Help Pagina-URL https://www.ac2a.com/contact-me/
URL van de Privacybeleid Pagina https://www.ac2a.com/privacy-policy
Ondersteunde Talen 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"
            ]
        }
    ]
}