GitHub TOC Sidebar

Put the GitHub README TOC in the sidebar

GitHub TOC Sidebarคืออะไร?

GitHub TOC Sidebar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Reorx และคุณลักษณะหลักของมันคือ "Put the GitHub README TOC in the sidebar"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub TOC Sidebar

ดาวน์โหลดไฟล์ส่วนขยาย GitHub TOC Sidebar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        GitHub TOC Sidebar enhances the accessibility on the readme of GitHub projects. It utilizes the builtin TOC (Table of Contents) component in GitHub, when scrolling down, the TOC will be opened and stick on the right side of the page, making it easier to view the outline of the content, and quicker to navigate around different sections. It's quite helpful when viewing projects that has long readme with multi-level table of contents.

Please note that this extension only works when all the circumstances are met:
1. You are viewing the home page of a project on GitHub, meaning that the URL must match the format https://github.com//, not subsidiary pages like https://github.com///blob/master/readme.md
2. The project has a readme file written in a markup language such as Markdown or RST
3. The readme file has headings that split content into multiple sections with titles
4. You scroll down the page further than the bottom of the right sidebar

To test if this extension works, you can open this page as an example: https://github.com/reorx/awesome-chatgpt-api                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ GitHub TOC Sidebar GitHub TOC Sidebar
ID cdiiikhamhampcninkmmpgejjbgdgdnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-toc-sidebar/cdiiikhamhampcninkmmpgejjbgdgdnn
คำอธิบาย Put the GitHub README TOC in the sidebar
ขนาดไฟล์ 8.83 KB
จำนวนการติดตั้ง 145
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2023-12-21
วันที่เผยแพร่ 2023-05-24
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Reorx
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/reorx/github-toc-sidebar
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitHub TOC Sidebar",
    "description": "Put the GitHub README TOC in the sidebar",
    "version": "2.1.0",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "css\/content_style.css"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ]
}