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

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

Issue 35873003: Bundle Hangouts Services extension with Chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
(Empty)
1 {
2 "name": "Hangouts Services",
3 "version": "1.0",
4 "manifest_version": 2,
5 "icons": {
6 "128": "icon_128.png"
7 },
8 "externally_connectable": {
9 "matches": ["*://*.google.com/hangouts*"]
meacer 2013/10/23 17:09:17 Should this be /hangouts/* rather than /hangouts*
vrk (LEFT CHROMIUM) 2013/10/23 19:10:02 Yes, I think so. I'll double-check to make sure.
10 },
11 "background": {
12 "scripts": ["thunk.js"],
13 "persistent": false
14 },
15 "permissions": [
16 "desktopCapture",
17 "system.cpu",
18 "webrtcAudioPrivate",
19 "webrtcLoggingPrivate"
20 ]
21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698