Code tours Github

Allows to run code tours in your browser

Hvad er Code tours Github?

Code tours Github er en Chrome-udvidelse udviklet af Zipper, og dens hovedfunktion er "Allows to run code tours in your browser".

Udvidelsesskærmbilleder

screenshot

Download Code tours Github-udvidelses-CRX-fil

Download Code tours Github-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Officiel URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Beskrivelse Allows to run code tours in your browser
Filstørrelse 42.82 KB
Antal Installationer 76
Nuværende Version 0.0.6
Senest Opdateret 2021-04-09
Udgivelsesdato 2020-11-30
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Zipper
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/doctolib/code-tours-github
Hjælpeside-URL https://github.com/doctolib/code-tours-github/issues
Understøttede Sprog 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"
    ]
}