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".
Снимки экрана расширения
Скачать файл CRX расширения HTML5 Outliner
Скачайте файлы расширений HTML5 Outliner в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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 |
URL страницы помощи | 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\/" } } |