Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Hvad er Table of Contents Sidebar?
Table of Contents Sidebar er en Chrome-udvidelse udviklet af codedraken, og dens hovedfunktion er "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Udvidelsesskærmbilleder
Download Table of Contents Sidebar-udvidelses-CRX-fil
Download Table of Contents Sidebar-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
Officiel URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
Beskrivelse | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
Filstørrelse | 128 KB |
Antal Installationer | 896 |
Nuværende Version | 1.0 |
Senest Opdateret | 2019-05-27 |
Udgivelsesdato | 2019-05-27 |
Bedømmelse | 2.67/5 Samlet 3 Bedømmelser |
Udvikler | codedraken |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/CodeDraken/table-of-contents-generator |
Hjælpeside-URL | https://github.com/CodeDraken/table-of-contents-generator/issues |
Understøttede Sprog | 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" ] } |