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.”。
扩展截图
下载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.
扩展基本信息
名称 | ![]() |
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 } |