Chromium Open IDE
Link remote source.chromium.org code path to your local chromium src.
Chromium Open IDE란 무엇입니까?
Chromium Open IDE은(는) Fangzhen Song에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Link remote source.chromium.org code path to your local chromium src."입니다.
확장 프로그램 스크린샷
Chromium Open IDE 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
# Chromium Open IDE (COI) `COI` gives you a context menu for opening files in your editor (`VSCode`) on [Chromium Code Search](https://source.chromium.org), [Chromium Code Review](https://chromium-review.googlesource.com) , [Google Git](https://chromium.googlesource.com) and [webdiff-for-coi](https://pypi.org/project/webdiff-for-coi). ## Installation Install this [Chrome Extension](https://chrome.google.com/webstore/detail/chromium-open-ide/oodolphplfmnljcohclgdikkoljjambi)/[MSEdge Extension](https://microsoftedge.microsoft.com/addons/detail/chromium-open-ide/ggfoollpnfolfaejalpiihpobcpbegkl) and related [VSCode Extension](https://marketplace.visualstudio.com/items?itemName=FangzhenSong.chromium-source-opener). ## Usage - For [Chromium Code Search](https://source.chromium.org): \ right-click on line number and select `Open My Editor`, it will open the file in your editor at the selected line. - For [Chromium Code Review](https://chromium-review.googlesource.com): \ right-click on code block and select `Open My Editor`, it will open the file in your editor at the selected line. - For [Google Git](https://chromium.googlesource.com): - click on the line number (optional). - choose and right-click on any code block. - select `Open My Editor`. It will open the file in your editor (at the selected line). - For [webdiff-for-coi](https://pypi.org/project/webdiff-for-coi): \ right-click on code block and select `Open My Editor`, it will open the file in your editor. *Tips: Before using, we should check that have started listening from `VScode`.* **Enjoy!**
확장 프로그램 기본 정보
이름 | Chromium Open IDE |
ID | oodolphplfmnljcohclgdikkoljjambi |
공식 URL | https://chromewebstore.google.com/detail/chromium-open-ide/oodolphplfmnljcohclgdikkoljjambi |
설명 | Link remote source.chromium.org code path to your local chromium src. |
파일 크기 | 1.32 MB |
설치 횟수 | 125 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2021-10-22 |
출시 날짜 | 2021-09-26 |
개발자 | Fangzhen Song |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/song-fangzhen/chromium-open-ide#chromium-open-ide-coi |
도움말 페이지 URL | https://github.com/song-fangzhen/chromium-open-ide/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Chromium Open IDE", "description": "Link remote source.chromium.org code path to your local chromium src.", "version": "1.2.3", "permissions": [ "contextMenus", "tabs" ], "action": { "default_icon": "images\/COI-Icon.png", "default_title": "COI" }, "background": { "service_worker": "background.js" }, "host_permissions": [ "http:\/\/127.0.0.1:8989\/*", "https:\/\/source.chromium.org\/*", "https:\/\/chromium-review.googlesource.com\/*" ], "icons": { "16": "images\/COI-Icon.png", "32": "images\/COI-Icon.png", "48": "images\/COI-Icon.png", "128": "images\/COI-Icon.png" } } |