Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
¿Qué es Table of Contents Sidebar?
Table of Contents Sidebar es una extensión de Chrome desarrollada por codedraken, y su función principal es "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Table of Contents Sidebar
Descarga archivos de extensión Table of Contents Sidebar en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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/
Información Básica de la Extensión
Nombre | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
URL Oficial | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
Descripción | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
Tamaño del Archivo | 128 KB |
Cantidad de Instalaciones | 896 |
Versión Actual | 1.0 |
Última Actualización | 2019-05-27 |
Fecha de Publicación | 2019-05-27 |
Calificación | 2.67/5 Total de 3 Calificaciones |
Desarrollador | codedraken |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/CodeDraken/table-of-contents-generator |
URL de la Página de Ayuda | https://github.com/CodeDraken/table-of-contents-generator/issues |
Idiomas Soportados | 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" ] } |