GitHub Web IDE

Open GitHub repositories in online web IDE

什么是GitHub Web IDE?

GitHub Web IDE是由zvizvi开发的Chrome扩展程序,该扩展的主要功能是“Open GitHub repositories in online web IDE”。

扩展截图

screenshot
screenshot

下载GitHub Web IDE扩展crx文件

下载GitHub Web IDE扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension adds to any GitHub repository a new drop down menu which offers links to a number of online services that allow viewing the source code of the repository in an IDE like interface.

Services currently supported:
* GitHub Dev
* VSCode Dev
* CodeSandbox
* GiHub1s
* GitLab1s
* Repl.it
* Gitpod
* StackBlitz
* Glitch
* Sourcegraph
* Active Forks
* Gitpop2
* GitHub Memory
* Clone in VSCode (locally)

Source code is available on https://github.com/zvizvi/GitHub-Web-IDE                    

扩展基本信息

名称 GitHub Web IDE GitHub Web IDE
ID adjiklnjodbiaioggfpbpkhbfcnhgkfe
官方URL https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe
简介 Open GitHub repositories in online web IDE
文件大小 869 KB
安装次数 11,469
当前版本 2.0.3
更新时间 2022-08-11
上架时间 2021-02-12
评分 4.75/5 共20次评分
开发者 zvizvi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/zvizvi/GitHub-Web-IDE
帮助页面URL https://github.com/zvizvi/GitHub-Web-IDE/issues
支持的语言 en-US
manifest.json
{
    "name": "GitHub Web IDE",
    "description": "Open GitHub repositories in online web IDE",
    "manifest_version": 3,
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "homepage_url": "https:\/\/github.com\/zvizvi\/GitHub-Web-IDE",
    "version": "2.0.3",
    "author": "[email protected]",
    "action": {
        "default_icon": {
            "16": "img\/icon16.png",
            "32": "img\/icon32.png",
            "48": "img\/icon48.png",
            "128": "img\/icon128.png"
        }
    },
    "permissions": [
        "storage"
    ],
    "options_page": "html\/options.html",
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitlab.com\/*"
            ],
            "js": [
                "js\/main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "128": "img\/icon128.png",
        "96": "img\/icon96.png",
        "72": "img\/icon72.png",
        "64": "img\/icon64.png",
        "48": "img\/icon48.png",
        "32": "img\/icon32.png",
        "24": "img\/icon24.png",
        "16": "img\/icon16.png"
    }
}