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

Side by Side Diff: remoting/webapp/me2mom/manifest.json

Issue 7046012: Basic OAuth2 support using the native app flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Jamie's comments. Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 { 1 {
2 "name": "Chromoting Me2Mom", 2 "name": "Chromoting Me2Mom",
3 "version": "1.0", 3 "version": "1.0",
4 "description": "Me2Mom-style remote support in Chrome.", 4 "description": "Me2Mom-style remote support in Chrome.",
5 "app": { 5 "app": {
6 "launch": { 6 "launch": {
7 "local_path": "choice.html" 7 "local_path": "choice.html"
8 } 8 }
9 }, 9 },
10 "background_page": "background.html", 10 "background_page": "background.html",
11 "icons": { 11 "icons": {
12 "128": "chromoting128.png" 12 "128": "chromoting128.png"
13 }, 13 },
14 "permissions": [ 14 "permissions": [
15 "tabs", 15 "tabs",
16 "https://accounts.google.com/o/oauth2/*",
16 "https://www.google.com/accounts/*", 17 "https://www.google.com/accounts/*",
17 "https://www.googleapis.com/chromoting/*" 18 "https://www.googleapis.com/chromoting/*"
18 ], 19 ],
19 "PLUGINS": "PLACEHOLDER" 20 "PLUGINS": "PLACEHOLDER"
20 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698