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

Side by Side 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, 9 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698