Open in VSCode
Open Github and Gitlab links in VSCode
Open in VSCode란 무엇입니까?
Open in VSCode은(는) Domenico Gemoli에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Open Github and Gitlab links in VSCode"입니다.
확장 프로그램 스크린샷
Open in VSCode 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Just right click on any link to a file and select "Open in VSCode". You can also click on line links to open the file to the specific file. Once you have installed, make sure to configure the extension in the options page. You can do this by right clicking on the "Open in VSCode" icon in the extensions bar on chrome, and then selecting "Options". Troubleshooting --------------- The extension expects the repository you are browsing to already be cloned into the folder in the options page. Tested with the following websites: - Github (no line support) - Gitlab It might work on some other websites as well (no guarantee), if you do discover that it works on other websites please let me know so I can add it to the list! All I see is a blank page! -------------------------- This could be happening for numerous reasons. Make sure you have set the options correctly in the options page. If you want, you can check what URL the extension is trying to open by enabling the debug mode in the options. You might want to check out how VSCode handles links: https://code.visualstudio.com/docs/editor/command-line#_opening-vs-code-with-urls Feedback -------- If you are having any issues, or would like to request a new feature, don't hesitate to open an issue on github: https://github.com/aberonni/open-in-vscode/issues
확장 프로그램 기본 정보
이름 | Open in VSCode |
ID | pfakkjlkpobjeghlgipljkjmbgcanpji |
공식 URL | https://chromewebstore.google.com/detail/open-in-vscode/pfakkjlkpobjeghlgipljkjmbgcanpji |
설명 | Open Github and Gitlab links in VSCode |
파일 크기 | 60.87 KB |
설치 횟수 | 14,061 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2022-09-14 |
출시 날짜 | 2018-05-04 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | Domenico Gemoli |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/aberonni/open-in-vscode |
도움말 페이지 URL | https://github.com/aberonni/open-in-vscode/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Open in VSCode", "version": "1.4.0", "description": "Open Github and Gitlab links in VSCode", "action": { "default_icon": "icons\/icon19.png", "default_title": "Open in VSCode" }, "author": "Domenico Gemoli", "permissions": [ "activeTab", "contextMenus", "scripting", "storage" ], "background": { "service_worker": "contextmenu.js" }, "options_page": "options.html", "homepage_url": "https:\/\/github.com\/aberonni\/open-in-vscode", "offline_enabled": true, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |