Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Что такое Table of Contents Sidebar?
Table of Contents Sidebar - это расширение Chrome, разработанное codedraken, и его основная функция - "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Снимки экрана расширения
Скачать файл CRX расширения Table of Contents Sidebar
Скачайте файлы расширений Table of Contents Sidebar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Quickly and easily generate a table of contents for articles you're reading or for use on articles you write.
This extension currently only supports the Medium platform. ( https://medium.com/ )
It's also free and open-source. You can get the code for it here: https://github.com/CodeDraken/table-of-contents-generator
Icon created by Icons8 @ https://icons8.com/ Основная информация о расширении
| Название | |
| ID | gnfemeofnjpbaigdpammdejmmjhdejih |
| Официальный URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
| Описание | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
| Размер файла | 128 KB |
| Количество установок | 896 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2019-05-27 |
| Дата публикации | 2019-05-27 |
| Рейтинг | 2.67/5 Всего 3 оценок |
| Разработчик | codedraken |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/CodeDraken/table-of-contents-generator |
| URL страницы помощи | https://github.com/CodeDraken/table-of-contents-generator/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Table of Contents Sidebar",
"version": "1.0",
"author": "CodeDraken",
"description": "A lightweight plugin that generates a table of contents sidebar for navigating or copying",
"manifest_version": 2,
"icons": {
"128": ".\/assets\/icon128.png"
},
"browser_action": {
"default_title": "ToC",
"default_popup": ".\/html\/popup.html"
},
"background": {
"scripts": [
".\/js\/background.js"
],
"persistent": false
},
"permissions": [
"activeTab"
]
} | |