Header Tags Copier

Copy all header tags (h1-h6) to clipboard

Qu'est-ce que Header Tags Copier ?

Header Tags Copier est une extension Chrome développée par https://ac2a.com, et sa fonction principale est "Copy all header tags (h1-h6) to clipboard".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Header Tags Copier

Téléchargez les fichiers d'extension Header Tags Copier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
URL Officiel https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
Description Copy all header tags (h1-h6) to clipboard
Taille du Fichier 4.6 KB
Nombre d'Installations 68
Version Actuelle 1.9
Dernière Mise à Jour 2023-03-30
Date de Publication 2023-03-28
Développeur https://ac2a.com
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://www.ac2a.com/contact-me/
URL de la Page de Politique de Confidentialité https://www.ac2a.com/privacy-policy
Langues Prises en Charge 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"
            ]
        }
    ]
}