Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 { | |
| 2 "name": "OME", | |
| 3 "description": "This is a Chrome Extension allow your open current file on you r editor from Chromium Code Search and Code Review.", | |
|
watk
2017/03/02 23:13:49
"OME gives you a context menu for opening files in
| |
| 4 "version": "0.3.5", | |
| 5 "permissions": [ | |
| 6 "contextMenus", | |
| 7 "tabs", | |
| 8 "activeTab", | |
| 9 "http://127.0.0.1:8989/*" | |
| 10 ], | |
| 11 "icons": { | |
| 12 "16": "icon-16.png" | |
| 13 }, | |
| 14 "background": { | |
| 15 "persistent": false, | |
| 16 "scripts": [ | |
| 17 "background.js" | |
| 18 ] | |
| 19 }, | |
| 20 "content_scripts": [ | |
| 21 { | |
| 22 "matches": [ | |
| 23 "https://cs.chromium.org/chromium/src/*" | |
| 24 ], | |
| 25 "js": [ | |
| 26 "cs-content.js" | |
| 27 ] | |
| 28 }, | |
| 29 { | |
| 30 "matches": [ | |
| 31 "https://codereview.chromium.org/*" | |
| 32 ], | |
| 33 "js": [ | |
| 34 "cr-content.js" | |
| 35 ] | |
| 36 } | |
| 37 ], | |
| 38 "manifest_version": 2 | |
| 39 } | |
| OLD | NEW |