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 // Updates version to 0.2 for v2 version wallpaper picker. Otherwise the event | 5 // Updates version to 0.2 for v2 version wallpaper picker. Otherwise the event |
6 // listener can not register appropriately. See crbug/157717. | 6 // listener can not register appropriately. See crbug/157717. |
7 "version": "0.2", | 7 "version": "0.2", |
8 "manifest_version": 2, | 8 "manifest_version": 2, |
9 "description": "An experimental wallpaper picker UI", | 9 "description": "An experimental wallpaper picker UI", |
10 "icons": { | 10 "icons": { |
11 "128": "images/icon128.png" | 11 "128": "images/icon128.png" |
12 }, | 12 }, |
13 "permissions": [ | 13 "permissions": [ |
14 "storage", | 14 "storage", |
15 "unlimitedStorage", | |
flackr
2013/03/06 16:22:11
Is unlimitedStorage necessary to get the 100MB you
bshe
2013/03/07 05:34:35
talked offline. I think so.
On 2013/03/06 16:22:1
| |
16 {"fileSystem": ["write"]}, | |
15 "wallpaperPrivate", | 17 "wallpaperPrivate", |
16 "https://commondatastorage.googleapis.com/", | 18 "https://commondatastorage.googleapis.com/", |
17 "https://storage.googleapis.com/" | 19 "https://storage.googleapis.com/" |
18 ], | 20 ], |
19 "app": { | 21 "app": { |
20 "background": { | 22 "background": { |
21 "scripts": ["js/event_page.js"] | 23 "scripts": ["js/event_page.js"] |
22 } | 24 } |
23 }, | 25 }, |
24 "display_in_launcher": false | 26 "display_in_launcher": false |
25 } | 27 } |
OLD | NEW |