Code tours Github

Allows to run code tours in your browser

What is Code tours Github?

Code tours Github is a Chrome extension developed by Zipper, and its main feature is "Allows to run code tours in your browser".

Extension Screenshots

screenshot

Download Code tours Github Extension CRX File

Download Code tours Github extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Official URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Description Allows to run code tours in your browser
File Size 42.82 KB
Installation Count 76
Current Version 0.0.6
Last Updated 2021-04-09
Publish Date 2020-11-30
Rating 5.00/5 Total 2 Ratings
Developer Zipper
Email [email protected]
Payment Type free
Extension Website https://github.com/doctolib/code-tours-github
Help Page URL https://github.com/doctolib/code-tours-github/issues
Supported Languages 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"
    ]
}