GEditor - GitHub Button Editor

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

O que é GEditor - GitHub Button Editor?

GEditor - GitHub Button Editor é uma extensão do Chrome desenvolvida por https://kopi.dev, e sua principal característica é "GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GEditor - GitHub Button Editor

Baixe arquivos de extensão GEditor - GitHub Button Editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome GEditor - GitHub Button Editor GEditor - GitHub Button Editor
ID cpfldfidpgollddlhpbgflolgjdlfnob
URL Oficial https://chromewebstore.google.com/detail/geditor-github-button-edi/cpfldfidpgollddlhpbgflolgjdlfnob
Descrição GitHub Button Editor makes it easy for you to open code repositories to the Github1s, CodeSandbox, Gitpod, and VSCode platforms.
Tamanho do Arquivo 152 KB
Contagem de Instalações 32
Versão Atual 0.0.0.2
Última Atualização 2021-03-25
Data de Publicação 2021-03-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://kopi.dev
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://kopi.dev
Idiomas Suportados 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"
        }
    ]
}