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
官方URL 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"
            ]
        }
    ]
}