OME

OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.

OMEとは何ですか?

OMEはhttp://chaopeng.meによって開発されたChromeの拡張機能で、その主な機能は「OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

OME拡張機能のCRXファイルをダウンロード

OME拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.                    

拡張機能の基本情報

名前 OME OME
ID ddmghiaepldohkneojcfejekplkakgjg
公式URL https://chrome.google.com/webstore/detail/ome/ddmghiaepldohkneojcfejekplkakgjg
説明 OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
ファイルサイズ 6.92 KB
インストール数 97
現在のバージョン 0.6.0
最終更新日 2017-05-13
公開日 2017-05-13
評価 3.00/5 合計 1 レビュー
開発者 http://chaopeng.me
支払い方法 free
拡張機能のウェブサイト https://chromium.googlesource.com/chromium/src.git/+/master/tools/chrome_extensions/open_my_editor/README.md
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OME",
    "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.",
    "version": "0.6.0",
    "permissions": [
        "contextMenus",
        "tabs",
        "activeTab",
        "http:\/\/127.0.0.1:8989\/*"
    ],
    "icons": {
        "16": "icon-16.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chromium-review.googlesource.com\/*"
            ],
            "js": [
                "gr-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/cs.chromium.org\/chromium\/src\/*"
            ],
            "js": [
                "cs-content.js"
            ]
        },
        {
            "matches": [
                "https:\/\/codereview.chromium.org\/*"
            ],
            "js": [
                "cr-content.js"
            ]
        }
    ],
    "manifest_version": 2
}