HTML5 Outliner

Generates a navigable page outline with heading and sectioning elements

ما هو HTML5 Outliner؟

HTML5 Outliner هو إضافة Chrome تم تطويرها بواسطة Dominykas Blyžė، والميزة الرئيسية لها هي "Generates a navigable page outline with heading and sectioning elements".

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

screenshot

تحميل ملف CRX للإضافة HTML5 Outliner

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

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

                        This extension is using the HTML5 outline algorithm to create a table of contents. 
Should also work well with HTML4 (and older?) pages, that have structured headings.
The table of contents is clickable and tries to highlight the heading/section in question after the jump.

The extension should prove useful to people who find themselves often using online HTML5 outliners.

Comments, bug reports and suggestions much appreciated!

Extension source code: https://github.com/h5o/h5o-chrome
Outliner source code: https://github.com/h5o/h5o-js                    

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

الاسم HTML5 Outliner HTML5 Outliner
ID afoibpobokebhgfnknfndkgemglggomo
عنوان URL الرسمي https://chromewebstore.google.com/detail/html5-outliner/afoibpobokebhgfnknfndkgemglggomo
الوصف Generates a navigable page outline with heading and sectioning elements
حجم الملف 25.58 KB
عدد التثبيتات 100,000
النسخة الحالية 0.8.14
آخر تحديث 2020-06-05
تاريخ النشر 2020-06-03
تقييم 4.24/5 مجموع تقييمات 259
المطور Dominykas Blyžė
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/h5o/h5o-chrome
عنوان صفحة المساعدة https://github.com/h5o/h5o-chrome/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTML5 Outliner",
    "short_name": "h5o",
    "manifest_version": 2,
    "description": "Generates a navigable page outline with heading and sectioning elements",
    "icons": {
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "outliner.min.js",
                "createOutline.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "img\/16.png",
        "default_title": "Outline",
        "default_popup": "popup.html"
    },
    "version": "0.8.14",
    "author": {
        "name": "Dominykas Bly\u017e\u0117",
        "email": "[email protected]",
        "url": "http:\/\/www.dominykas.com\/"
    }
}