Github Open With

Open your Github repository with 3rd party web IDEs

什麼是Github Open With?

Github Open With是由nir開發的Chrome擴展程式,該擴展的主要功能是“Open your Github repository with 3rd party web IDEs”。

擴展截圖

screenshot
screenshot

下載Github Open With擴展crx文件

下載Github Open With擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
官方網址 https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
簡介 Open your Github repository with 3rd party web IDEs
檔案大小 11.29 KB
安裝次數 194
目前版本 1.2.0
更新時間 2023-09-19
上架時間 2021-06-12
評分 5.00/5 共 1 次評分
開發者 nir
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/nirtamir2/github-open-repository-with
說明頁面URL https://github.com/nirtamir2/github-open-repository-with
支援的語言 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"
            ]
        }
    ]
}