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

下載Code tours Github擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}