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

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

Issue 8059014: Add missing comma in Chromoting webapp manifest. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 { 1 {
2 "name": "__MSG_PRODUCT_NAME__ BETA", 2 "name": "__MSG_PRODUCT_NAME__ BETA",
3 "version": "1.2.UNIQUE_VERSION", 3 "version": "1.2.UNIQUE_VERSION",
4 "description": "__MSG_PRODUCT_DESCRIPTION__", 4 "description": "__MSG_PRODUCT_DESCRIPTION__",
5 "default_locale": "en", 5 "default_locale": "en",
6 "app": { 6 "app": {
7 "launch": { 7 "launch": {
8 "local_path": "choice.html" 8 "local_path": "choice.html"
9 } 9 }
10 }, 10 },
11 "icons": { 11 "icons": {
12 "128": "chromoting128.png", 12 "128": "chromoting128.png",
13 "48": "chromoting48.png" 13 "48": "chromoting48.png",
14 "16": "chromoting16.png" 14 "16": "chromoting16.png"
15 }, 15 },
16 "content_scripts": [ 16 "content_scripts": [
17 { 17 {
18 "matches": [ 18 "matches": [
19 "https://talkgadget.google.com/talkgadget/blank", 19 "https://talkgadget.google.com/talkgadget/blank",
20 "https://talkgadget.google.com/talkgadget/blank?*" 20 "https://talkgadget.google.com/talkgadget/blank?*"
21 ], 21 ],
22 "js": [ "cs_oauth2_trampoline.js" ] 22 "js": [ "cs_oauth2_trampoline.js" ]
23 } 23 }
24 ], 24 ],
25 "permissions": [ 25 "permissions": [
26 "tabs", 26 "tabs",
27 "https://accounts.google.com/o/oauth2/*", 27 "https://accounts.google.com/o/oauth2/*",
28 "https://www.google.com/accounts/*", 28 "https://www.google.com/accounts/*",
29 "https://www.googleapis.com/chromoting/*", 29 "https://www.googleapis.com/chromoting/*",
30 "https://talkgadget.google.com/talkgadget/*" 30 "https://talkgadget.google.com/talkgadget/*"
31 ], 31 ],
32 "plugins": [ 32 "plugins": [
33 { "path": "remoting_host_plugin.dll", "public": false }, 33 { "path": "remoting_host_plugin.dll", "public": false },
34 { "path": "libremoting_host_plugin.ia32.so", "public": false }, 34 { "path": "libremoting_host_plugin.ia32.so", "public": false },
35 { "path": "libremoting_host_plugin.x64.so", "public": false }, 35 { "path": "libremoting_host_plugin.x64.so", "public": false },
36 { "path": "remoting_host_plugin.plugin", "public": false } 36 { "path": "remoting_host_plugin.plugin", "public": false }
37 ] 37 ]
38 } 38 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698