Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
What is Table of Contents Sidebar?
Table of Contents Sidebar is a Chrome extension developed by codedraken, and its main feature is "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Extension Screenshots
Download Table of Contents Sidebar Extension CRX File
Download Table of Contents Sidebar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
Official URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
Description | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
File Size | 128 KB |
Installation Count | 896 |
Current Version | 1.0 |
Last Updated | 2019-05-27 |
Publish Date | 2019-05-27 |
Rating | 2.67/5 Total 3 Ratings |
Developer | codedraken |
Payment Type | free |
Extension Website | https://github.com/CodeDraken/table-of-contents-generator |
Help Page URL | https://github.com/CodeDraken/table-of-contents-generator/issues |
Supported Languages | 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" ] } |