OME
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
What is OME?
OME is a Chrome extension developed by http://chaopeng.me, and its main feature is "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.".
Extension Screenshots
Download OME Extension CRX File
Download OME extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.
Extension Basic Information
Name | ![]() |
ID | ddmghiaepldohkneojcfejekplkakgjg |
Official URL | https://chrome.google.com/webstore/detail/ome/ddmghiaepldohkneojcfejekplkakgjg |
Description | OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review. |
File Size | 6.92 KB |
Installation Count | 97 |
Current Version | 0.6.0 |
Last Updated | 2017-05-13 |
Publish Date | 2017-05-13 |
Rating | 3.00/5 Total 1 Ratings |
Developer | http://chaopeng.me |
Payment Type | free |
Extension Website | https://chromium.googlesource.com/chromium/src.git/+/master/tools/chrome_extensions/open_my_editor/README.md |
Supported Languages | 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 } |