Chromium Code Reviews| 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", |
|
Evan Stade
2015/05/19 16:36:41
we don't need to bump this, do we?
bshe
2015/05/19 16:44:52
no need to bump it.
| |
| 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 "16": "images/icon16.png", | 11 "16": "images/icon16.png", |
| 12 "32": "images/icon32.png", | 12 "32": "images/icon32.png", |
| 13 "48": "images/icon48.png", | 13 "48": "images/icon48.png", |
| 14 "64": "images/icon64.png", | 14 "64": "images/icon64.png", |
| 15 "96": "images/icon96.png", | 15 "96": "images/icon96.png", |
| 16 "128": "images/icon128.png", | 16 "128": "images/icon128.png", |
| 17 "256": "images/icon256.png" | 17 "256": "images/icon256.png" |
| 18 }, | 18 }, |
| 19 "permissions": [ | 19 "permissions": [ |
| 20 "alarms", | 20 "alarms", |
| 21 "app.window.alpha", | 21 "app.window.alpha", |
| 22 "chrome://resources/", | |
| 22 "experimental", | 23 "experimental", |
| 23 "storage", | 24 "storage", |
| 24 "unlimitedStorage", | 25 "unlimitedStorage", |
| 25 {"fileSystem": ["write"]}, | 26 {"fileSystem": ["write"]}, |
| 26 "wallpaperPrivate", | 27 "wallpaperPrivate", |
| 27 "https://storage.googleapis.com/", | 28 "https://storage.googleapis.com/", |
| 28 "syncFileSystem" | 29 "syncFileSystem" |
| 29 ], | 30 ], |
| 30 "app": { | 31 "app": { |
| 31 "background": { | 32 "background": { |
| 32 "scripts": [ | 33 "scripts": [ |
| 33 "js/constants.js", | 34 "js/constants.js", |
| 34 "js/util.js", | 35 "js/util.js", |
| 35 "js/event_page.js" | 36 "js/event_page.js" |
| 36 ] | 37 ] |
| 37 } | 38 }, |
| 39 "content_security_policy": "img-src 'self' chrome://resources;" | |
| 38 }, | 40 }, |
| 39 "display_in_launcher": false | 41 "display_in_launcher": false |
| 40 } | 42 } |
| OLD | NEW |