Heading Tag Markup

This extension show the h-Tag on page.

What is Heading Tag Markup?

Heading Tag Markup is a Chrome extension developed by Webreload, and its main feature is "This extension show the h-Tag on page.".

Extension Screenshots

screenshot

Download Heading Tag Markup Extension CRX File

Download Heading Tag Markup extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
Official URL https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
Description This extension show the h-Tag on page.
File Size 8.25 KB
Installation Count 6,832
Current Version 1.0
Last Updated 2019-09-06
Publish Date 2019-09-06
Rating 4.57/5 Total 7 Ratings
Developer Webreload
Email [email protected]
Payment Type free
Help Page URL http://www.wrel.de/google-tag-manager-support/
Supported Languages 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"
    }
}