Index: tools/chrome_extensions/open_my_editor/ext/manifest.json |
diff --git a/tools/chrome_extensions/open_my_editor/ext/manifest.json b/tools/chrome_extensions/open_my_editor/ext/manifest.json |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a5e651808d9f44155965d7948262ad7843f43a3a |
--- /dev/null |
+++ b/tools/chrome_extensions/open_my_editor/ext/manifest.json |
@@ -0,0 +1,39 @@ |
+{ |
+ "name": "OME", |
+ "description": "OME gives you a context menu for opening files in your editor on Chromium Code Search and Code Review.", |
+ "version": "0.4.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://cs.chromium.org/chromium/src/*" |
+ ], |
+ "js": [ |
+ "cs-content.js" |
+ ] |
+ }, |
+ { |
+ "matches": [ |
+ "https://codereview.chromium.org/*" |
+ ], |
+ "js": [ |
+ "cr-content.js" |
+ ] |
+ } |
+ ], |
+ "manifest_version": 2 |
+} |