CodeWing - GitHub code navigation
Next level code navigation for Python, Java, and Go on GitHub.
CodeWing - GitHub code navigationคืออะไร?
CodeWing - GitHub code navigation เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://codewing.dev และคุณลักษณะหลักของมันคือ "Next level code navigation for Python, Java, and Go on GitHub."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CodeWing - GitHub code navigation
ดาวน์โหลดไฟล์ส่วนขยาย 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 ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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"
} | |