Code tours Github

Allows to run code tours in your browser

Cos'è Code tours Github?

Code tours Github è un'estensione di Chrome sviluppata da Zipper, e la sua funzione principale è "Allows to run code tours in your browser".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Code tours Github

Scarica i file di estensione Code tours Github in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
URL Ufficiale https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Descrizione Allows to run code tours in your browser
Dimensione del File 42.82 KB
Conteggio Installazioni 76
Versione Corrente 0.0.6
Ultimo Aggiornamento 2021-04-09
Data di Pubblicazione 2020-11-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Zipper
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/doctolib/code-tours-github
URL della Pagina di Aiuto https://github.com/doctolib/code-tours-github/issues
Lingue Supportate 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"
    ]
}