CodeWing - GitHub code navigation

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

Was ist CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation ist eine Chrome-Erweiterung, die von https://codewing.dev entwickelt wurde, und ihr Hauptmerkmal ist "Next level code navigation for Python, Java, and Go on GitHub.".

Erweiterungsscreenshots

screenshot
screenshot

CodeWing - GitHub code navigation-Erweiterungs-CRX-Datei herunterladen

Laden Sie CodeWing - GitHub code navigation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        *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                    

Grundlegende Informationen zur Erweiterung

Name CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
Offizielle URL https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Beschreibung Next level code navigation for Python, Java, and Go on GitHub.
Dateigröße 166 KB
Installationsanzahl 604
Aktuelle Version 2022-07-20T06:24:26Z 8a2b97e
Letztes Update 2022-07-20
Veröffentlichungsdatum 2020-06-28
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler https://codewing.dev
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://codewing.dev
Hilfeseite URL https://github.com/codewing-dev/codewing
Unterstützte Sprachen 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"
}