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