OLD | NEW |
---|---|
(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 } | |
OLD | NEW |