Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Was ist Table of Contents Sidebar?
Table of Contents Sidebar ist eine Chrome-Erweiterung, die von codedraken entwickelt wurde, und ihr Hauptmerkmal ist "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Erweiterungsscreenshots
Table of Contents Sidebar-Erweiterungs-CRX-Datei herunterladen
Laden Sie Table of Contents Sidebar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
Offizielle URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
Beschreibung | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
Dateigröße | 128 KB |
Installationsanzahl | 896 |
Aktuelle Version | 1.0 |
Letztes Update | 2019-05-27 |
Veröffentlichungsdatum | 2019-05-27 |
Bewertung | 2.67/5 Insgesamt 3 Bewertungen |
Entwickler | codedraken |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/CodeDraken/table-of-contents-generator |
Hilfeseite URL | https://github.com/CodeDraken/table-of-contents-generator/issues |
Unterstützte Sprachen | 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" ] } |