Heading Tag Markup

This extension show the h-Tag on page.

Co to jest Heading Tag Markup?

Heading Tag Markup to rozszerzenie Chrome opracowane przez Webreload, a jego główną funkcją jest „This extension show the h-Tag on page.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Heading Tag Markup

Pobierz pliki rozszerzeń Heading Tag Markup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
Oficjalny URL https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Opis This extension show the h-Tag on page.
Rozmiar pliku 8.25 KB
Liczba instalacji 6,832
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-09-06
Data Publikacji 2019-09-06
Ocena 4.57/5 Łącznie 7 Oceny
Deweloper Webreload
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy http://www.wrel.de/google-tag-manager-support/
Obsługiwane Języki 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"
    }
}