Code tours Github

Allows to run code tours in your browser

Что такое Code tours Github?

Code tours Github - это расширение Chrome, разработанное Zipper, и его основная функция - "Allows to run code tours in your browser".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Code tours Github

Скачайте файлы расширений 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"
    ]
}