Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(214)

Unified Diff: tools/chrome_extensions/open_my_editor/ext/manifest.json

Issue 2720793005: Add Open my editor (Closed)
Patch Set: add owners and change to py2 Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.",
watk 2017/03/02 23:13:49 "OME gives you a context menu for opening files in
+ "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
+}

Powered by Google App Engine
This is Rietveld 408576698