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 |
| 官方網址 | 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"
]
} | |