CodeWing - GitHub code navigation

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

CodeWing - GitHub code navigation là gì?

CodeWing - GitHub code navigation là một tiện ích mở rộng Chrome được phát triển bởi https://codewing.dev, và tính năng chính của nó là "Next level code navigation for Python, Java, and Go on GitHub.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng CodeWing - GitHub code navigation

Tải xuống các tệp mở rộng CodeWing - GitHub code navigation dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        *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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CodeWing - GitHub code navigation CodeWing - GitHub code navigation
ID njkkfaliiinmkcckepjdmgbmjljfdeee
URL Chính Thức https://chromewebstore.google.com/detail/codewing-github-code-navi/njkkfaliiinmkcckepjdmgbmjljfdeee
Mô tả Next level code navigation for Python, Java, and Go on GitHub.
Kích Thước Tệp 166 KB
Số Lần Cài Đặt 604
Phiên Bản Hiện Tại 2022-07-20T06:24:26Z 8a2b97e
Cập Nhật Lần Cuối 2022-07-20
Ngày Phát Hành 2020-06-28
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://codewing.dev
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://codewing.dev
URL Trang Trợ Giúp https://github.com/codewing-dev/codewing
Ngôn Ngữ Được Hỗ Trợ 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"
}