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文件

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