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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*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 |
공식 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" } |