Table of Contents for GitHub

Adds a table of contents to repositories, gists and wikis on GitHub

Table of Contents for GitHub란 무엇입니까?

Table of Contents for GitHub은(는) Arthur Hammer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a table of contents to repositories, gists and wikis on GitHub"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Table of Contents for GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        No more scrolling around readmes and wikis looking for specific information. Find what you are looking for, quickly.

Works almost anywhere, not just readmes.

- Repos, gists, and wikis
- Any GitHub markup
- Edit and create files and wiki pages right on GitHub
- Simple and unobtrusive

--

Also available for Firefox and Safari. 

For more info and source code: https://github.com/arthurhammer/github-toc                    

확장 프로그램 기본 정보

이름 Table of Contents for GitHub Table of Contents for GitHub
ID hlkhpeomjgelmljaknhoboeohhgmmgcn
공식 URL https://chromewebstore.google.com/detail/table-of-contents-for-git/hlkhpeomjgelmljaknhoboeohhgmmgcn
설명 Adds a table of contents to repositories, gists and wikis on GitHub
파일 크기 11.44 KB
설치 횟수 365
현재 버전 0.2.5
최근 업데이트 2016-09-09
출시 날짜 2016-09-09
평점 4.00/5 총 4 개의 평점
개발자 Arthur Hammer
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/arthurhammer/github-toc
도움말 페이지 URL https://github.com/arthurhammer/github-toc/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Table of Contents for GitHub",
    "short_name": "GitHub ToC",
    "version": "0.2.5",
    "author": "Arthur Hammer",
    "homepage_url": "https:\/\/github.com\/arthurhammer\/github-toc",
    "description": "Adds a table of contents to repositories, gists and wikis on GitHub",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/gist.github.com\/*\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "github-toc.js"
            ]
        }
    ]
}