CodeWing - GitHub code navigation

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

What is CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation is a Chrome extension developed by https://codewing.dev, and its main feature is "Next level code navigation for Python, Java, and Go on GitHub.".

Extension Screenshots

screenshot
screenshot

Download CodeWing - GitHub code navigation Extension CRX File

Download CodeWing - GitHub code navigation extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        *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                    

Extension Basic Information

Name CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
Official URL https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Description Next level code navigation for Python, Java, and Go on GitHub.
File Size 166 KB
Installation Count 604
Current Version 2022-07-20T06:24:26Z 8a2b97e
Last Updated 2022-07-20
Publish Date 2020-06-28
Rating 5.00/5 Total 3 Ratings
Developer https://codewing.dev
Email [email protected]
Payment Type in_app
Extension Website https://codewing.dev
Help Page URL https://github.com/codewing-dev/codewing
Supported Languages 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"
}