GitHub Web IDE
Open GitHub repositories in online web IDE
O que é GitHub Web IDE?
GitHub Web IDE é uma extensão do Chrome desenvolvida por zvizvi, e sua principal característica é "Open GitHub repositories in online web IDE".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub Web IDE
Baixe arquivos de extensão GitHub Web IDE 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
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
Informações Básicas da Extensão
Nome | GitHub Web IDE |
ID | adjiklnjodbiaioggfpbpkhbfcnhgkfe |
URL Oficial | https://chromewebstore.google.com/detail/github-web-ide/adjiklnjodbiaioggfpbpkhbfcnhgkfe |
Descrição | Open GitHub repositories in online web IDE |
Tamanho do Arquivo | 869 KB |
Contagem de Instalações | 11,469 |
Versão Atual | 2.0.3 |
Última Atualização | 2022-08-11 |
Data de Publicação | 2021-02-12 |
Classificação | 4.75/5 Total de 20 Avaliações |
Desenvolvedor | zvizvi |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/zvizvi/GitHub-Web-IDE |
URL da Página de Ajuda | https://github.com/zvizvi/GitHub-Web-IDE/issues |
Idiomas Suportados | 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" } } |