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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย codedraken และคุณลักษณะหลักของมันคือ "A lightweight plugin that generates a table of contents sidebar for navigating or copying"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Table of Contents Sidebar
ดาวน์โหลดไฟล์ส่วนขยาย 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/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Table of Contents Sidebar |
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" ] } |