Code tours Github

Allows to run code tours in your browser

Co to jest Code tours Github?

Code tours Github to rozszerzenie Chrome opracowane przez Zipper, a jego główną funkcją jest „Allows to run code tours in your browser”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Code tours Github

Pobierz pliki rozszerzeń Code tours Github w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Oficjalny URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Opis Allows to run code tours in your browser
Rozmiar pliku 42.82 KB
Liczba instalacji 76
Aktualna Wersja 0.0.6
Ostatnia Aktualizacja 2021-04-09
Data Publikacji 2020-11-30
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Zipper
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/doctolib/code-tours-github
Adres URL Strony Pomocy https://github.com/doctolib/code-tours-github/issues
Obsługiwane Języki 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"
    ]
}