Github Open With

Open your Github repository with 3rd party web IDEs

O que é Github Open With?

Github Open With é uma extensão do Chrome desenvolvida por nir, e sua principal característica é "Open your Github repository with 3rd party web IDEs".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Github Open With

Baixe arquivos de extensão Github Open With 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

                        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                    

Informações Básicas da Extensão

Nome Github Open With Github Open With
ID dggpihfahccepeedgkckjlcfgnfbjofe
URL Oficial https://chromewebstore.google.com/detail/github-open-with/dggpihfahccepeedgkckjlcfgnfbjofe
Descrição Open your Github repository with 3rd party web IDEs
Tamanho do Arquivo 11.29 KB
Contagem de Instalações 194
Versão Atual 1.2.0
Última Atualização 2023-09-19
Data de Publicação 2021-06-12
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor nir
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/nirtamir2/github-open-repository-with
URL da Página de Ajuda https://github.com/nirtamir2/github-open-repository-with
Idiomas Suportados 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"
            ]
        }
    ]
}