Code tours Github

Allows to run code tours in your browser

Code tours Github là gì?

Code tours Github là một tiện ích mở rộng Chrome được phát triển bởi Zipper, và tính năng chính của nó là "Allows to run code tours in your browser".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Code tours Github

Tải xuống các tệp mở rộng Code tours Github dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Code tours Github Code tours Github
ID emmipndjppboloecpfgnckbkcehhhpkc
URL Chính Thức https://chromewebstore.google.com/detail/code-tours-github/emmipndjppboloecpfgnckbkcehhhpkc
Mô tả Allows to run code tours in your browser
Kích Thước Tệp 42.82 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 0.0.6
Cập Nhật Lần Cuối 2021-04-09
Ngày Phát Hành 2020-11-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Zipper
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/doctolib/code-tours-github
URL Trang Trợ Giúp https://github.com/doctolib/code-tours-github/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}