Code tours Github

Allows to run code tours in your browser

Wat is Code tours Github?

Code tours Github is een Chrome-extensie ontwikkeld door Zipper, en de belangrijkste functie is "Allows to run code tours in your browser".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Code tours Github

Download Code tours Github-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Officiële URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Beschrijving Allows to run code tours in your browser
Bestandsgrootte 42.82 KB
Aantal Installaties 76
Huidige Versie 0.0.6
Laatst Bijgewerkt 2021-04-09
Publicatiedatum 2020-11-30
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar Zipper
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/doctolib/code-tours-github
Help Pagina-URL https://github.com/doctolib/code-tours-github/issues
Ondersteunde Talen 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"
    ]
}