Heading Tag Markup

This extension show the h-Tag on page.

Qu'est-ce que Heading Tag Markup ?

Heading Tag Markup est une extension Chrome développée par Webreload, et sa fonction principale est "This extension show the h-Tag on page.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Heading Tag Markup

Téléchargez les fichiers d'extension Heading Tag Markup 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

                        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                    

Informations de Base sur l'Extension

Nom Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
URL Officiel https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Description This extension show the h-Tag on page.
Taille du Fichier 8.25 KB
Nombre d'Installations 6,832
Version Actuelle 1.0
Dernière Mise à Jour 2019-09-06
Date de Publication 2019-09-06
Évaluation 4.57/5 Total 7 Évaluations
Développeur Webreload
Email [email protected]
Type de Paiement free
URL de la Page d'Aide http://www.wrel.de/google-tag-manager-support/
Langues Prises en Charge 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"
    }
}