| 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..eb7cb32520a1e0ea966ad44b6f8cb2670e398883
|
| --- /dev/null
|
| +++ b/tools/chrome_extensions/open_my_editor/ext/manifest.json
|
| @@ -0,0 +1,39 @@
|
| +{
|
| + "name": "OME",
|
| + "description": "This is a Chrome Extension allow your open current file on your editor from Chromium Code Search and Code Review.",
|
| + "version": "0.3.5",
|
| + "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
|
| +}
|
|
|