CodeWing - GitHub code navigation

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

什么是CodeWing - GitHub code navigation?

CodeWing - GitHub code navigation是由https://codewing.dev开发的Chrome扩展程序,该扩展的主要功能是“Next level code navigation for Python, Java, and Go on GitHub.”。

扩展截图

screenshot
screenshot

下载CodeWing - GitHub code navigation扩展crx文件

下载CodeWing - GitHub code navigation扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        *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                    

扩展基本信息

名称 CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
官方URL https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
简介 Next level code navigation for Python, Java, and Go on GitHub.
文件大小 166 KB
安装次数 604
当前版本 2022-07-20T06:24:26Z 8a2b97e
更新时间 2022-07-20
上架时间 2020-06-28
评分 5.00/5 共3次评分
开发者 https://codewing.dev
电子邮箱 [email protected]
付费类型 in_app
扩展官网 https://codewing.dev
帮助页面URL https://github.com/codewing-dev/codewing
支持的语言 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"
}