OLD | NEW |
---|---|
1 { | 1 { |
2 // chrome-extension://obklkkbkpaoaejdabbfldmcfplpdgolj/ | 2 // chrome-extension://obklkkbkpaoaejdabbfldmcfplpdgolj/ |
3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6czTauf4/ISarT2JOcjcanIq+kcL/2U OF56QqXNT6PFgEwBG1i9Tfw/dTE59qWdGuxWt4yQlChewOFaRP3nb9AygPFXO31pNXaCY9xyDsjE5RhV vVB0GJa3VHFITIROpBSJHXNOqZBm706A8SFCTauasdWPFSE6Y7sA13t1P0MwIDAQAB", | 3 "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6czTauf4/ISarT2JOcjcanIq+kcL/2U OF56QqXNT6PFgEwBG1i9Tfw/dTE59qWdGuxWt4yQlChewOFaRP3nb9AygPFXO31pNXaCY9xyDsjE5RhV vVB0GJa3VHFITIROpBSJHXNOqZBm706A8SFCTauasdWPFSE6Y7sA13t1P0MwIDAQAB", |
4 "name": "Wallpaper Picker", | 4 "name": "Wallpaper Picker", |
5 "version": "0.1", | 5 "version": "0.1", |
6 "manifest_version": 2, | 6 "manifest_version": 2, |
7 "description": "An experimental wallpaper picker UI", | 7 "description": "An experimental wallpaper picker UI", |
8 "chrome_url_overrides": { | 8 "chrome_url_overrides": { |
9 "wallpapers": "main.html" | 9 "wallpapers": "main.html" |
10 }, | 10 }, |
11 "permissions": [ | 11 "permissions": [ |
12 "wallpaperPrivate", | 12 "wallpaperPrivate", |
13 "tabs", | 13 "tabs", |
14 "webRequest", | 14 "chrome://resources/", |
15 "http://lh5.ggpht.com/", | 15 "http://lh5.ggpht.com/", |
16 "https://commondatastorage.googleapis.com/", | 16 "https://commondatastorage.googleapis.com/", |
17 "https://storage.googleapis.com/" | 17 "https://storage.googleapis.com/" |
18 ], | 18 ], |
19 "app": { | 19 "app": { |
20 "launch": { | 20 "background": { |
21 "container": "panel", | 21 "scripts": ["js/event_page.js"], |
22 "width": 550, | 22 "persistent": false |
Mihai Parparita -not on Chrome
2012/10/12 00:48:47
This shouldn't be necessary (all app background pa
bshe
2012/10/12 16:28:30
Done.
| |
23 "height": 440, | |
24 "local_path": "main.html" | |
25 } | 23 } |
26 }, | 24 }, |
27 "content_security_policy": | |
28 "default-src:none; object-src 'none'; script-src 'self'", | |
29 "display_in_launcher": false | 25 "display_in_launcher": false |
30 } | 26 } |
OLD | NEW |