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": { | |
9 "wallpapers": "main.html" | |
10 }, | |
11 "permissions": [ | 8 "permissions": [ |
12 "wallpaperPrivate", | 9 "wallpaperPrivate", |
13 "tabs", | 10 "tabs", |
14 "webRequest", | |
15 "http://lh5.ggpht.com/", | |
16 "https://commondatastorage.googleapis.com/", | 11 "https://commondatastorage.googleapis.com/", |
17 "https://storage.googleapis.com/" | 12 "https://storage.googleapis.com/" |
18 ], | 13 ], |
19 "app": { | 14 "app": { |
20 "launch": { | 15 "background": { |
21 "container": "panel", | 16 "scripts": ["js/event_page.js"] |
22 "width": 550, | |
23 "height": 440, | |
24 "local_path": "main.html" | |
25 } | 17 } |
26 }, | 18 }, |
27 "content_security_policy": | |
28 "default-src:none; object-src 'none'; script-src 'self'", | |
29 "display_in_launcher": false | 19 "display_in_launcher": false |
30 } | 20 } |
OLD | NEW |