Heading Tag Markup

This extension show the h-Tag on page.

O que é Heading Tag Markup?

Heading Tag Markup é uma extensão do Chrome desenvolvida por Webreload, e sua principal característica é "This extension show the h-Tag on page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Heading Tag Markup

Baixe arquivos de extensão Heading Tag Markup 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

                        This extension visual highlights the h-Tag on every page.

With the add-on "Heading Tag Markup" you can highlight the h1-h6 tag on the website. 

Features

- h1 - h6 Highlight day
- Display which day is currently being output
- differentiation of h1 - h6 tags by different colors
- function can be activated / deactivated directly with a click on the Add-On icon                    

Informações Básicas da Extensão

Nome Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
URL Oficial https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Descrição This extension show the h-Tag on page.
Tamanho do Arquivo 8.25 KB
Contagem de Instalações 6,832
Versão Atual 1.0
Última Atualização 2019-09-06
Data de Publicação 2019-09-06
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor Webreload
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda http://www.wrel.de/google-tag-manager-support/
Idiomas Suportados de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Heading Tag Markup",
    "version": "1.0",
    "manifest_version": 2,
    "description": "This extension show  the h-Tag on page.",
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "h-tag.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "heading.js"
            ],
            "css": [
                "heading.css"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Heading Tag Settings"
    }
}