Code tours Github

Allows to run code tours in your browser

ما هو Code tours Github؟

Code tours Github هو إضافة Chrome تم تطويرها بواسطة Zipper، والميزة الرئيسية لها هي "Allows to run code tours in your browser".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Code tours Github

قم بتنزيل ملفات الامتداد Code tours Github بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
عنوان URL الرسمي https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
الوصف Allows to run code tours in your browser
حجم الملف 42.82 KB
عدد التثبيتات 76
النسخة الحالية 0.0.6
آخر تحديث 2021-04-09
تاريخ النشر 2020-11-30
تقييم 5.00/5 مجموع تقييمات 2
المطور Zipper
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/doctolib/code-tours-github
عنوان صفحة المساعدة https://github.com/doctolib/code-tours-github/issues
اللغات المدعومة 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"
    ]
}