Code tours Github

Allows to run code tours in your browser

Vad är Code tours Github?

Code tours Github är en Chrome-tillägg utvecklad av Zipper, och dess huvudfunktion är "Allows to run code tours in your browser".

Tilläggsskärmbilder

screenshot

Ladda ner Code tours Github-förlängningens CRX-fil

Ladda ner Code tours Github-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
Officiell webbadress https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Beskrivning Allows to run code tours in your browser
Filstorlek 42.82 KB
Antal Installationer 76
Aktuell Version 0.0.6
Senast Uppdaterad 2021-04-09
Publiceringsdatum 2020-11-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Zipper
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/doctolib/code-tours-github
Hjälpsida URL https://github.com/doctolib/code-tours-github/issues
Stödda Språk 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"
    ]
}