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

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

Issue 10832240: Added background page loader component extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
OLDNEW
(Empty)
1 {
2 "name": "BackLoaderExtension",
3 "version": "1.0",
4 "manifest_version": 2,
5 "description": "Background page loader for hosted apps",
6 "background": {
7 "transient": true,
8 "persistent": false,
Mihai Parparita -not on Chrome 2012/08/10 17:11:02 This is the only key that's necessary. If you see
zel 2012/08/16 01:13:45 Done.
xiyuan 2012/08/16 16:55:38 Mihai seems to mean to keep "persistent" and remov
zel 2012/08/16 17:17:21 Done.
9 "page": "background.html"
10 },
11 "permissions": [
12 "alarms",
13 "http://www.google.com/*"
14 ]
15 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698