Heading Tag Markup

This extension show the h-Tag on page.

Wat is Heading Tag Markup?

Heading Tag Markup is een Chrome-extensie ontwikkeld door Webreload, en de belangrijkste functie is "This extension show the h-Tag on page.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Heading Tag Markup

Download Heading Tag Markup-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
Officiële URL https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Beschrijving This extension show the h-Tag on page.
Bestandsgrootte 8.25 KB
Aantal Installaties 6,832
Huidige Versie 1.0
Laatst Bijgewerkt 2019-09-06
Publicatiedatum 2019-09-06
Beoordeling 4.57/5 Totaal 7 Beoordelingen
Ontwikkelaar Webreload
E-mail [email protected]
Betalingswijze free
Help Pagina-URL http://www.wrel.de/google-tag-manager-support/
Ondersteunde Talen 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"
    }
}