Open GitHub in IDE
Open GitHub files links in your IDE
Open GitHub in IDE란 무엇입니까?
Open GitHub in IDE은(는) https://lmichelin.fr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open GitHub files links in your IDE"입니다.
확장 프로그램 스크린샷
Open GitHub in IDE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension allows you to open files in your IDE directly from GitHub, assuming the repository you are working on is cloned on your computer. When a fragment of a file is displayed, your IDE opens the file and puts the cursor at the desired line. Supported IDEs: - VS Code - VSCodium - VS Code Insiders - PhpStorm - IntelliJ IDEA - Any JetBrains editor (using built-in web server) - WebStorm (not tested yet) - GoLand - CLion WSL with the Ubuntu distribution is also supported on VS Code, VSCodium and VS Code Insiders for Windows. Feel free to open an issue on GitHub if you detect a bug or a missing feature!
확장 프로그램 기본 정보
이름 | Open GitHub in IDE |
ID | bmifnnfmccmleigpaolofacllndmfned |
공식 URL | https://chromewebstore.google.com/detail/open-github-in-ide/bmifnnfmccmleigpaolofacllndmfned |
설명 | Open GitHub files links in your IDE |
파일 크기 | 208 KB |
설치 횟수 | 1,069 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2023-09-23 |
출시 날짜 | 2020-06-28 |
평점 | 4.25/5 총 8 개의 평점 |
개발자 | https://lmichelin.fr |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/lmichelin/open-github-links-in-ide |
도움말 페이지 URL | https://github.com/lmichelin/open-github-links-in-ide/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Open GitHub files links in your IDE", "version": "1.2.3", "manifest_version": 3, "name": "Open GitHub in IDE", "author": "Louis-Marie Michelin", "homepage_url": "https:\/\/github.com\/lmichelin\/open-github-links-in-ide", "permissions": [ "storage" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*" ], "js": [ "inject.js" ], "css": [ "inject.css" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/github16.png", "32": "icons\/github32.png", "48": "icons\/github48.png", "64": "icons\/github64.png", "128": "icons\/github128.png" }, "web_accessible_resources": [ { "resources": [ "icons\/*.png" ], "matches": [ "https:\/\/github.com\/*" ] } ] } |