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

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

Issue 7016001: Simple OAuth1 implementation based on http://code.google.com/chrome/extensions/tut_oauth.html. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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": [
15 "tabs",
16 "https://www.google.com/accounts/*"
17 ],
14 "PLUGINS": "PLACEHOLDER" 18 "PLUGINS": "PLACEHOLDER"
15 } 19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698