GitHub to Code

Allows developers to open GitHub repositories locally within Visual Studio Code.

GitHub to Code là gì?

GitHub to Code là một tiện ích mở rộng Chrome được phát triển bởi maxchehab, và tính năng chính của nó là "Allows developers to open GitHub repositories locally within Visual Studio Code.".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng GitHub to Code 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

                        Features: 
- Custom keyboard shortcut
- Fast setup
- Open from file page, inline markdown, or a code review                    

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

Tên GitHub to Code GitHub to Code
ID nmhejamhnhhhegjaalgklaeeladhkaph
URL Chính Thức https://chrome.google.com/webstore/detail/github-to-code/nmhejamhnhhhegjaalgklaeeladhkaph
Mô tả Allows developers to open GitHub repositories locally within Visual Studio Code.
Kích Thước Tệp 6.05 MB
Số Lần Cài Đặt 139
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2019-10-08
Ngày Phát Hành 2019-10-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển maxchehab
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/maxchehab/gh-code
URL Trang Trợ Giúp https://github.com/maxchehab/gh-code
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub to Code",
    "version": "0.0.4",
    "description": "Allows developers to open GitHub repositories locally within Visual Studio Code.",
    "icons": {
        "48": "icons\/code-logo.png"
    },
    "applications": {
        "gecko": {
            "id": "{b58eb207-8f2e-41ce-a28e-3046f1e92a5f}"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                ".\/common\/utils\/polyfill.util.js",
                ".\/extension\/content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage",
        "tabs",
        ""
    ],
    "web_accessible_resources": [
        "icons\/code-logo.png",
        "next\/out\/*"
    ],
    "background": {
        "scripts": [
            ".\/common\/utils\/polyfill.util.js",
            ".\/extension\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/code-logo.png",
        "default_title": "Github to Code",
        "default_popup": "next\/out\/index.html",
        "browser_style": true
    },
    "commands": {
        "open-repo-or-file": {
            "suggested_key": {
                "default": "Ctrl+G",
                "mac": "MacCtrl+G"
            },
            "description": "Open current repository or file."
        }
    }
}