Heading Tag Markup

This extension show the h-Tag on page.

Heading Tag Markupคืออะไร?

Heading Tag Markup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Webreload และคุณลักษณะหลักของมันคือ "This extension show the h-Tag on page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Heading Tag Markup

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}