Header Tags Copier

Copy all header tags (h1-h6) to clipboard

O que é Header Tags Copier?

Header Tags Copier é uma extensão do Chrome desenvolvida por https://ac2a.com, e sua principal característica é "Copy all header tags (h1-h6) to clipboard".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Header Tags Copier

Baixe arquivos de extensão Header Tags Copier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Header Tags Copier Header Tags Copier
ID lghgclalgmdpglinjojjddmlmhlfjaif
URL Oficial https://chromewebstore.google.com/detail/header-tags-copier/lghgclalgmdpglinjojjddmlmhlfjaif
Descrição Copy all header tags (h1-h6) to clipboard
Tamanho do Arquivo 4.6 KB
Contagem de Instalações 68
Versão Atual 1.9
Última Atualização 2023-03-30
Data de Publicação 2023-03-28
Desenvolvedor https://ac2a.com
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://www.ac2a.com/contact-me/
URL da Página de Política de Privacidade https://www.ac2a.com/privacy-policy
Idiomas Suportados 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"
            ]
        }
    ]
}