Table of Contents Sidebar
A lightweight plugin that generates a table of contents sidebar for navigating or copying
Table of Contents Sidebar là gì?
Table of Contents Sidebar là một tiện ích mở rộng Chrome được phát triển bởi codedraken, và tính năng chính của nó là "A lightweight plugin that generates a table of contents sidebar for navigating or copying".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Table of Contents Sidebar
Tải xuống các tệp mở rộng Table of Contents Sidebar dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Table of Contents Sidebar |
ID | gnfemeofnjpbaigdpammdejmmjhdejih |
URL Chính Thức | https://chromewebstore.google.com/detail/table-of-contents-sidebar/gnfemeofnjpbaigdpammdejmmjhdejih |
Mô tả | A lightweight plugin that generates a table of contents sidebar for navigating or copying |
Kích Thước Tệp | 128 KB |
Số Lần Cài Đặt | 896 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2019-05-27 |
Ngày Phát Hành | 2019-05-27 |
Đánh Giá | 2.67/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | codedraken |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/CodeDraken/table-of-contents-generator |
URL Trang Trợ Giúp | https://github.com/CodeDraken/table-of-contents-generator/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |