Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Co to jest Table of Contents Sidebar?
Table of Contents Sidebar to rozszerzenie Chrome opracowane przez codedraken, a jego główną funkcją jest „A lightweight plugin that generates a table of contents sidebar for navigating or copying”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Table of Contents Sidebar
Pobierz pliki rozszerzeń Table of Contents Sidebar w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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/ Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | gnfemeofnjpbaigdpammdejmmjhdejih |
| Oficjalny URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
| Opis | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
| Rozmiar pliku | 128 KB |
| Liczba instalacji | 896 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2019-05-27 |
| Data Publikacji | 2019-05-27 |
| Ocena | 2.67/5 Łącznie 3 Oceny |
| Deweloper | codedraken |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/CodeDraken/table-of-contents-generator |
| Adres URL Strony Pomocy | https://github.com/CodeDraken/table-of-contents-generator/issues |
| Obsługiwane Języki | 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"
]
} | |