HTML Heading Highlighter

Highlights all the headings on a page to visually allow the user to see the heading hierarchy.

ما هو HTML Heading Highlighter؟

HTML Heading Highlighter هو إضافة Chrome تم تطويرها بواسطة Evans Owino، والميزة الرئيسية لها هي "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة HTML Heading Highlighter

قم بتنزيل ملفات الامتداد HTML Heading Highlighter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A chrome extension that highlights all the headings (h1-h6) on the page. I made this to extension to help me quickly get a rough idea of the heading structure when carrying out accessibility audits. Each heading is given an outline with a specific colour. A key is also appended to the body which illustrates the mapping of colour to heading.                    

معلومات أساسية عن التمديد

الاسم HTML Heading Highlighter HTML Heading Highlighter
ID cdfideipbjhenjiijgmifpfgkhoneaic
عنوان URL الرسمي https://chromewebstore.google.com/detail/html-heading-highlighter/cdfideipbjhenjiijgmifpfgkhoneaic
الوصف Highlights all the headings on a page to visually allow the user to see the heading hierarchy.
حجم الملف 13.7 KB
عدد التثبيتات 5,124
النسخة الحالية 1.0.1
آخر تحديث 2018-10-15
تاريخ النشر 2018-10-15
تقييم 3.40/5 مجموع تقييمات 5
المطور Evans Owino
نوع الدفع free
موقع الإضافة https://github.com/eowino/heading-highlighter-chrome-ext
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML Heading Highlighter",
    "short_name": "Highlight Headings",
    "version": "1.0.1",
    "description": "Highlights all the headings on a page to visually allow the user to see the heading hierarchy.",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/images\/hh_16.png",
            "32": "assets\/images\/hh_32.png",
            "48": "assets\/images\/hh_48.png",
            "128": "assets\/images\/hh_128.png"
        }
    },
    "icons": {
        "16": "assets\/images\/hh_16.png",
        "32": "assets\/images\/hh_32.png",
        "48": "assets\/images\/hh_48.png",
        "128": "assets\/images\/hh_128.png"
    }
}