Github Open With

Open your Github repository with 3rd party web IDEs

Github Open With là gì?

Github Open With là một tiện ích mở rộng Chrome được phát triển bởi nir, và tính năng chính của nó là "Open your Github repository with 3rd party web IDEs".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Github Open With 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

                        Chrome extension that helps you open Github repositories in a different 3rd party IDES.
 When navigating to any github repository, you can click on the green code button and see new options:
- Open in Github Dev
- Open in Github1s
- Open in StackBlitz
- Open in CodeSandbox                    

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

Tên Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL Chính Thức https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Mô tả Open your Github repository with 3rd party web IDEs
Kích Thước Tệp 11.29 KB
Số Lần Cài Đặt 194
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-09-19
Ngày Phát Hành 2021-06-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển nir
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/nirtamir2/github-open-repository-with
URL Trang Trợ Giúp https://github.com/nirtamir2/github-open-repository-with
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Open With",
    "version": "1.2.0",
    "description": "Open your Github repository with 3rd party web IDEs",
    "author": "Nir Tamir",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/nirtamir2\/github-open-with",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*\/*",
                "https:\/\/*.github.com\/*\/*"
            ],
            "all_frames": true,
            "js": [
                "contentScript.js"
            ]
        }
    ]
}