github-readme-toc

See in the left side the table of content of the readme file in the github project page

github-readme-toc란 무엇입니까?

github-readme-toc은(는) Ivan Fraixedes에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "See in the left side the table of content of the readme file in the github project page"입니다.

확장 프로그램 스크린샷

screenshot

github-readme-toc 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension shows a table of content generated from the README file of any GitGuh project’s root page.

It is very handy to jump through the sections without scrolling manually up and down or use the browser search action at the same time that you have to remember how it is called.

It is open source released under MIT and Creative Common, check link to GitHub project

Change log: https://github.com/ifraixedes/browser-extension-github-readme-toc/blob/master/CHANGELOG.md                    

확장 프로그램 기본 정보

이름 github-readme-toc github-readme-toc
ID lbmealnkdpmndleijdkljlofnmgmpcdf
공식 URL https://chromewebstore.google.com/detail/github-readme-toc/lbmealnkdpmndleijdkljlofnmgmpcdf
설명 See in the left side the table of content of the readme file in the github project page
파일 크기 2.22 MB
설치 횟수 171
현재 버전 0.0.5
최근 업데이트 2015-09-20
출시 날짜 2015-09-20
평점 3.00/5 총 2 개의 평점
개발자 Ivan Fraixedes
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/ifraixedes/browser-extension-github-readme-toc
도움말 페이지 URL https://github.com/ifraixedes/browser-extension-github-readme-toc/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "github-readme-toc",
    "version": "0.0.5",
    "author": "Ivan Fraixedes  (http:\/\/ivan.fraixed.es)",
    "description": "See in the left side the table of content of the readme file in the github project page",
    "icons": {
        "16": "img\/git-readme-toc-16.png",
        "48": "img\/git-readme-toc-48.png",
        "128": "img\/git-readme-toc-128.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "exclude_globs": [
                "https:\/\/github.com\/*\/*\/*"
            ],
            "js": [
                "scripts\/toc-widget.js"
            ],
            "css": [
                "css\/toc-widget.css"
            ]
        }
    ]
}