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.”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Chromium Open IDE扩展crx文件

下载Chromium Open IDE扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        # 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 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"
    }
}