Code tours Github

Allows to run code tours in your browser

Apa itu Code tours Github?

Code tours Github adalah ekstensi Chrome yang dikembangkan oleh Zipper, dan fitur utamanya adalah "Allows to run code tours in your browser".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Code tours Github

Unduh file ekstensi Code tours Github dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
URL Resmi https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Deskripsi Allows to run code tours in your browser
Ukuran File 42.82 KB
Jumlah Instalasi 76
Versi Saat Ini 0.0.6
Terakhir Diperbarui 2021-04-09
Tanggal Publikasi 2020-11-30
Penilaian 5.00/5 Total 2 Penilaian
Pengembang Zipper
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/doctolib/code-tours-github
URL Halaman Bantuan https://github.com/doctolib/code-tours-github/issues
Bahasa yang Didukung 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"
    ]
}