Code tours Github

Allows to run code tours in your browser

Code tours Github란 무엇입니까?

Code tours Github은(는) Zipper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows to run code tours in your browser"입니다.

확장 프로그램 스크린샷

screenshot

Code tours Github 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds the "code tours" feature directly in github. See https://marketplace.visualstudio.com/items?itemName=vsls-contrib.codetour

It allows you to explore the code of a repository step by step, guided by previously written Code Tours.                    

확장 프로그램 기본 정보

이름 Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
공식 URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
설명 Allows to run code tours in your browser
파일 크기 42.82 KB
설치 횟수 76
현재 버전 0.0.6
최근 업데이트 2021-04-09
출시 날짜 2020-11-30
평점 5.00/5 총 2 개의 평점
개발자 Zipper
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/doctolib/code-tours-github
도움말 페이지 URL https://github.com/doctolib/code-tours-github/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code tours Github",
    "version": "0.0.6",
    "description": "Allows to run code tours in your browser",
    "manifest_version": 2,
    "minimum_chrome_version": "60",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/render.githubusercontent.com\/*",
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "128": "code-tour.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "js": [
                "github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "code-tour.png"
    ]
}