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
Eメール [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"
}