Code tours Github

Allows to run code tours in your browser

Was ist Code tours Github?

Code tours Github ist eine Chrome-Erweiterung, die von Zipper entwickelt wurde, und ihr Hauptmerkmal ist "Allows to run code tours in your browser".

Erweiterungsscreenshots

screenshot

Code tours Github-Erweiterungs-CRX-Datei herunterladen

Laden Sie Code tours Github-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Offizielle URL https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Beschreibung Allows to run code tours in your browser
Dateigröße 42.82 KB
Installationsanzahl 76
Aktuelle Version 0.0.6
Letztes Update 2021-04-09
Veröffentlichungsdatum 2020-11-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Zipper
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/doctolib/code-tours-github
Hilfeseite URL https://github.com/doctolib/code-tours-github/issues
Unterstützte Sprachen 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"
    ]
}