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

Side by Side Diff: chrome/browser/resources/hangouts_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, 1 month 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
(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*"]
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