Heading Tag Markup

This extension show the h-Tag on page.

Heading Tag Markupとは何ですか?

Heading Tag MarkupはWebreloadによって開発されたChromeの拡張機能で、その主な機能は「This extension show the h-Tag on page.」です。

拡張機能のスクリーンショット

screenshot

Heading Tag Markup拡張機能のCRXファイルをダウンロード

Heading Tag Markup拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Heading Tag Markup Heading Tag Markup
ID keeiendlnmbddkjjhnbegaaheohkfhoj
公式URL https://chromewebstore.google.com/detail/heading-tag-markup/keeiendlnmbddkjjhnbegaaheohkfhoj
説明 This extension show the h-Tag on page.
ファイルサイズ 8.25 KB
インストール数 6,832
現在のバージョン 1.0
最終更新日 2019-09-06
公開日 2019-09-06
評価 4.57/5 合計 7 レビュー
開発者 Webreload
Eメール [email protected]
支払い方法 free
ヘルプページのURL http://www.wrel.de/google-tag-manager-support/
対応言語 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"
    }
}