CodeWing - GitHub code navigation

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

Hvad er CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation er en Chrome-udvidelse udviklet af https://codewing.dev, og dens hovedfunktion er "Next level code navigation for Python, Java, and Go on GitHub.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download CodeWing - GitHub code navigation-udvidelses-CRX-fil

Download CodeWing - GitHub code navigation-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        *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                    

Grundlæggende oplysninger om udvidelsen

Navn CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
Officiel URL https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Beskrivelse Next level code navigation for Python, Java, and Go on GitHub.
Filstørrelse 166 KB
Antal Installationer 604
Nuværende Version 2022-07-20T06:24:26Z 8a2b97e
Senest Opdateret 2022-07-20
Udgivelsesdato 2020-06-28
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler https://codewing.dev
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://codewing.dev
Hjælpeside-URL https://github.com/codewing-dev/codewing
Understøttede Sprog 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"
}