Open GitHub in IDE

Open GitHub files links in your IDE

O que é Open GitHub in IDE?

Open GitHub in IDE é uma extensão do Chrome desenvolvida por https://lmichelin.fr, e sua principal característica é "Open GitHub files links in your IDE".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Open GitHub in IDE

Baixe arquivos de extensão Open GitHub in 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 allows you to open files in your IDE directly from GitHub, assuming the repository you are working on is cloned on your computer. When a fragment of a file is displayed, your IDE opens the file and puts the cursor at the desired line.

Supported IDEs:
- VS Code
- VSCodium
- VS Code Insiders
- PhpStorm
- IntelliJ IDEA
- Any JetBrains editor (using built-in web server)
- WebStorm (not tested yet)
- GoLand
- CLion

WSL with the Ubuntu distribution is also supported on VS Code, VSCodium and VS Code Insiders for Windows.

Feel free to open an issue on GitHub if you detect a bug or a missing feature!                    

Informações Básicas da Extensão

Nome Open GitHub in IDE Open GitHub in IDE
ID bmifnnfmccmleigpaolofacllndmfned
URL Oficial https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned
Descrição Open GitHub files links in your IDE
Tamanho do Arquivo 208 KB
Contagem de Instalações 1,069
Versão Atual 1.2.3
Última Atualização 2023-09-23
Data de Publicação 2020-06-28
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor https://lmichelin.fr
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/lmichelin/open-github-links-in-ide
URL da Página de Ajuda https://github.com/lmichelin/open-github-links-in-ide/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Open GitHub files links in your IDE",
    "version": "1.2.3",
    "manifest_version": 3,
    "name": "Open GitHub in IDE",
    "author": "Louis-Marie Michelin",
    "homepage_url": "https:\/\/github.com\/lmichelin\/open-github-links-in-ide",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "inject.js"
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/github16.png",
        "32": "icons\/github32.png",
        "48": "icons\/github48.png",
        "64": "icons\/github64.png",
        "128": "icons\/github128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*.png"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ]
}