Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Cos'è Table of Contents Sidebar?
Table of Contents Sidebar è un'estensione di Chrome sviluppata da codedraken, e la sua funzione principale è "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Table of Contents Sidebar
Scarica i file di estensione Table of Contents Sidebar in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/ Informazioni di Base sull'Estensione
| Nome | |
| ID | gnfemeofnjpbaigdpammdejmmjhdejih |
| URL Ufficiale | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
| Descrizione | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
| Dimensione del File | 128 KB |
| Conteggio Installazioni | 896 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2019-05-27 |
| Data di Pubblicazione | 2019-05-27 |
| Valutazione | 2.67/5 Totale 3 Valutazioni |
| Sviluppatore | codedraken |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/CodeDraken/table-of-contents-generator |
| URL della Pagina di Aiuto | https://github.com/CodeDraken/table-of-contents-generator/issues |
| Lingue Supportate | 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"
]
} | |