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

Side by Side Diff: chrome/browser/resources/chromeos/connectivity_diagnostics/manifest.json

Issue 22911032: Update connectivity diagnostics manifest (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit Created 7 years, 4 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 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGJWLUb83WKoDeODlrPIZu60M8bzbvrk g3Jf/5aO3ux2FL+G+/BO4Vyt/J0t8lXBtnTOvHo6KPpA042PyE9xMdlufFnJqEkvPXNzRlBWeVQqFHbM WE6o/x8diG69dNmHyFYcUjjFFDk2X2GOLQXNUGJQ6MIikbdzoWdLGttmhAIwIDAQAB", 2 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDGJWLUb83WKoDeODlrPIZu60M8bzbvrk g3Jf/5aO3ux2FL+G+/BO4Vyt/J0t8lXBtnTOvHo6KPpA042PyE9xMdlufFnJqEkvPXNzRlBWeVQqFHbM WE6o/x8diG69dNmHyFYcUjjFFDk2X2GOLQXNUGJQ6MIikbdzoWdLGttmhAIwIDAQAB",
3 "manifest_version": 2, 3 "manifest_version": 2,
4 "name": "Connectivity Diagnostics", 4 "name": "Connectivity Diagnostics",
5 "version": "0.5.2", 5 "version": "0.6.1",
6 "minimum_chrome_version": "27", 6 "minimum_chrome_version": "27",
7 "offline_enabled": true, 7 "offline_enabled": true,
8 "default_locale": "en", 8 "default_locale": "en",
9 "icons": { 9 "icons": {
10 "128": "img/icon_128.png", 10 "128": "img/icon_128.png",
11 "16": "img/icon_16.png" 11 "16": "img/icon_16.png"
12 }, 12 },
13 "incognito": "split",
14 "permissions" : [ 13 "permissions" : [
15 { "socket" : [ 14 { "socket" : [
16 "tcp-connect:*:443", 15 "tcp-connect:*:443",
17 "tcp-connect:*:80", 16 "tcp-connect:*:80",
18 "tcp-connect:*:25", 17 "tcp-connect:*:25",
19 "udp-bind:*", 18 "udp-bind:*",
20 "udp-send-to:*:53" 19 "udp-send-to:*:53"
21 ]}, 20 ]},
22 "clipboardWrite", 21 "clipboardWrite",
23 "experimental", 22 "experimental",
24 "metricsPrivate", 23 "metricsPrivate",
25 "networkingPrivate", 24 "networkingPrivate",
26 "http://*.google.com/*", 25 "http://*.google.com/*",
27 "https://*.google.com/*" 26 "https://*.google.com/*"
28 ], 27 ],
29 "app": { 28 "app": {
30 "background": { 29 "background": {
31 "scripts": ["background.js"] 30 "scripts": ["background.js"]
32 } 31 }
33 }, 32 },
34 "display_in_launcher": false, 33 "display_in_launcher": false,
35 "display_in_new_tab_page": false 34 "display_in_new_tab_page": false
36 } 35 }
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