Heading Tag Markup

This extension show the h-Tag on page.

Cos'è Heading Tag Markup?

Heading Tag Markup è un'estensione di Chrome sviluppata da Webreload, e la sua funzione principale è "This extension show the h-Tag on page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Heading Tag Markup

Scarica i file di estensione Heading Tag Markup 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

                        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                    

Informazioni di Base sull'Estensione

Nome Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
URL Ufficiale https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Descrizione This extension show the h-Tag on page.
Dimensione del File 8.25 KB
Conteggio Installazioni 6,832
Versione Corrente 1.0
Ultimo Aggiornamento 2019-09-06
Data di Pubblicazione 2019-09-06
Valutazione 4.57/5 Totale 7 Valutazioni
Sviluppatore Webreload
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto http://www.wrel.de/google-tag-manager-support/
Lingue Supportate 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"
    }
}