GitHub TOC Sidebar

Put the GitHub README TOC in the sidebar

GitHub TOC Sidebar란 무엇입니까?

GitHub TOC Sidebar은(는) Reorx에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Put the GitHub README TOC in the sidebar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

GitHub TOC Sidebar 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}