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.”。
擴展截圖
下載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 |
ID | njkkfaliiinmkcckepjdmgbmjljfdeee |
官方網址 | 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" } |