GEditor - GitHub Button Editor

GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.

什么是GEditor - GitHub Button Editor?

GEditor - GitHub Button Editor是由https://kopi.dev开发的Chrome扩展程序,该扩展的主要功能是“GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.”。

扩展截图

screenshot

下载GEditor - GitHub Button Editor扩展crx文件

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

扩展使用说明

                        I always find it inconvenient to read code on GitHub, and even with things like Octotree, I always find it too much trouble to cut around and too slow to clone down some of the libraries, so I came up with the idea of having an online VS Code tool to read GitHub code                    

扩展基本信息

名称 GEditor - GitHub Button Editor GEditor - GitHub Button Editor
ID cpfldfidpgollddlhpbgflolgjdlfnob
官方URL https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob
简介 GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
文件大小 152 KB
安装次数 32
当前版本 0.0.0.2
更新时间 2021-03-25
上架时间 2021-03-25
评分 5.00/5 共1次评分
开发者 https://kopi.dev
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://kopi.dev
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GEditor - GitHub Button Editor",
    "description": "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.",
    "version": "0.0.0.2",
    "browser_action": {
        "default_title": "GEditor"
    },
    "icons": {
        "128": "icons\/icon128.png",
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png"
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}