Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Vad är Table of Contents Sidebar?
Table of Contents Sidebar är en Chrome-tillägg utvecklad av codedraken, och dess huvudfunktion är "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Tilläggsskärmbilder
Ladda ner Table of Contents Sidebar-förlängningens CRX-fil
Ladda ner Table of Contents Sidebar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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/ Grundläggande Information om Tillägg
| Namn | |
| ID | gnfemeofnjpbaigdpammdejmmjhdejih |
| Officiell webbadress | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
| Beskrivning | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
| Filstorlek | 128 KB |
| Antal Installationer | 896 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2019-05-27 |
| Publiceringsdatum | 2019-05-27 |
| Betyg | 2.67/5 Totalt 3 Betyg |
| Utvecklare | codedraken |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/CodeDraken/table-of-contents-generator |
| Hjälpsida URL | https://github.com/CodeDraken/table-of-contents-generator/issues |
| Stödda Språk | 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"
]
} | |