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

Side by Side Diff: chrome/browser/resources/hangout_services/manifest.json

Issue 1530863002: Allow audio debug recordings through a private API extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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
1 { 1 {
2 // Extension ID: nkeimhogjdpnpccoofpliimaahmaaome 2 // Extension ID: nkeimhogjdpnpccoofpliimaahmaaome
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T3 6aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+Ekm tI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB", 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T3 6aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+Ekm tI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB",
4 4
5 "name": "Google Hangouts", 5 "name": "Google Hangouts",
6 // Note: Always update the version number when this file is updated. Chrome 6 // Note: Always update the version number when this file is updated. Chrome
7 // triggers extension preferences update on the version increase. 7 // triggers extension preferences update on the version increase.
8 "version": "1.1.2", 8 "version": "1.2.0",
9 "manifest_version": 2, 9 "manifest_version": 2,
10 "externally_connectable": { 10 "externally_connectable": {
11 "matches": [ 11 "matches": [
12 "https://*.google.com/*", 12 "https://*.google.com/*",
13 // For tests. 13 // For tests.
14 "*://localhost/*" 14 "*://localhost/*"
15 ] 15 ]
16 }, 16 },
17 "background": { 17 "background": {
18 "page": "background.html", 18 "page": "background.html",
19 "persistent": false 19 "persistent": false
20 }, 20 },
21 "incognito": "split", 21 "incognito": "split",
22 "permissions": [ 22 "permissions": [
23 "desktopCapture", 23 "desktopCapture",
24 "processes", 24 "processes",
25 "system.cpu", 25 "system.cpu",
26 "webrtcAudioPrivate", 26 "webrtcAudioPrivate",
27 "webrtcDesktopCapturePrivate", 27 "webrtcDesktopCapturePrivate",
28 "webrtcLoggingPrivate" 28 "webrtcLoggingPrivate"
29 ] 29 ]
30 } 30 }
OLDNEW
« no previous file with comments | « chrome/browser/media/webrtc_logging_handler_host.cc ('k') | chrome/browser/resources/hangout_services/thunk.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698