CodeWing - GitHub code navigation

Next level code navigation for Python, Java, and Go on GitHub.

O que é CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation é uma extensão do Chrome desenvolvida por https://codewing.dev, e sua principal característica é "Next level code navigation for Python, Java, and Go on GitHub.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão CodeWing - GitHub code navigation

Baixe arquivos de extensão CodeWing - GitHub code navigation 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

                        *UPDATE* CodeWing has been integrated into Sourcegraph! Install the Sourcegraph Chrome extension instead:

https://chrome.google.com/webstore/detail/sourcegraph/dgjhfomjieaadpoljlnidmbgkdffpack?hl=en

*OLD DESCRIPTION BELOW*

- 📜 Hover over a variable to view its documentation
- ➡️ Click on a variable to jump to its definition
- 🧠 Understands all language constructs (local variables, functions, etc.)
- ⤴️ Works on pull requests
- ⚡️ Lightning fast
- 📝 Works on Java, Python, and Go code                    

Informações Básicas da Extensão

Nome CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
URL Oficial https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Descrição Next level code navigation for Python, Java, and Go on GitHub.
Tamanho do Arquivo 166 KB
Contagem de Instalações 604
Versão Atual 2022-07-20T06:24:26Z 8a2b97e
Última Atualização 2022-07-20
Data de Publicação 2020-06-28
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://codewing.dev
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://codewing.dev
URL da Página de Ajuda https://github.com/codewing-dev/codewing
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CodeWing - GitHub code navigation",
    "version": "2022.7.20.384",
    "description": "Next level code navigation for Python, Java, and Go on GitHub.",
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "custom.css"
            ],
            "matches": [
                "https:\/\/github.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "CodeWing settings"
    },
    "version_name": "2022-07-20T06:24:26Z 8a2b97e"
}