Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
什么是Table of Contents Sidebar?
Table of Contents Sidebar是由codedraken开发的Chrome扩展程序,该扩展的主要功能是“A lightweight plugin that generates a table of contents sidebar for navigating or copying”。
扩展截图
下载Table of Contents Sidebar扩展crx文件
下载Table of Contents Sidebar扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/ 扩展基本信息
| 名称 | |
| ID | gnfemeofnjpbaigdpammdejmmjhdejih |
| 官方URL | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
| 简介 | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
| 文件大小 | 128 KB |
| 安装次数 | 896 |
| 当前版本 | 1.0 |
| 更新时间 | 2019-05-27 |
| 上架时间 | 2019-05-27 |
| 评分 | 2.67/5 共3次评分 |
| 开发者 | codedraken |
| 付费类型 | free |
| 扩展官网 | https://github.com/CodeDraken/table-of-contents-generator |
| 帮助页面URL | https://github.com/CodeDraken/table-of-contents-generator/issues |
| 支持的语言 | 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"
]
} | |