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

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

Issue 30833003: Add code to load Hangout Services as a component extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge to head for tryjobs. Created 7 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
OLDNEW
1 { 1 {
2 "name": "Hangouts Services", 2 // Extension ID: nkeimhogjdpnpccoofpliimaahmaaome
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDAQt2ZDdPfoSe/JI6ID5bgLHRCnCu9T3 6aYczmhw/tnv6QZB2I6WnOCMZXJZlRdqWc7w9jo4BWhYS50Vb4weMfh/I0On7VcRwJUgfAxW2cHB+Ekm tI1v4v/OU24OqIa1Nmv9uRVeX0GjhQukdLNhAE6ACWooaf5kqKlCeK+1GOkQIDAQAB",
4
5 "name": "Hangout Services",
3 "version": "1.0", 6 "version": "1.0",
4 "manifest_version": 2, 7 "manifest_version": 2,
5 "icons": { 8 "icons": {
6 "128": "icon_128.png" 9 "128": "icon_128.png"
7 }, 10 },
8 "externally_connectable": { 11 "externally_connectable": {
9 "matches": ["*://*.google.com/hangouts*"] 12 "matches": ["*://*.google.com/hangouts*"]
10 }, 13 },
11 "background": { 14 "background": {
12 "scripts": ["thunk.js"], 15 "scripts": ["thunk.js"],
13 "persistent": false 16 "persistent": false
14 }, 17 },
15 "permissions": [ 18 "permissions": [
16 "desktopCapture", 19 "desktopCapture",
17 "system.cpu", 20 "system.cpu",
18 "webrtcAudioPrivate", 21 "webrtcAudioPrivate",
19 "webrtcLoggingPrivate" 22 "webrtcLoggingPrivate"
20 ] 23 ]
21 } 24 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698