CodeWing - GitHub code navigation

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

¿Qué es CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation es una extensión de Chrome desarrollada por https://codewing.dev, y su función principal es "Next level code navigation for Python, Java, and Go on GitHub.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión CodeWing - GitHub code navigation

Descarga archivos de extensión CodeWing - GitHub code navigation en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        *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                    

Información Básica de la Extensión

Nombre CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
URL Oficial https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Descripción Next level code navigation for Python, Java, and Go on GitHub.
Tamaño del Archivo 166 KB
Cantidad de Instalaciones 604
Versión Actual 2022-07-20T06:24:26Z 8a2b97e
Última Actualización 2022-07-20
Fecha de Publicación 2020-06-28
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://codewing.dev
Correo electrónico chrismwendt@gmail.com
Tipo de Pago in_app
Sitio Web de la Extensión https://codewing.dev
URL de la Página de Ayuda https://github.com/codewing-dev/codewing
Idiomas Soportados 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"
}