fullscreen background in Cordova Chrome Apps using background-size: cover
html, body {
min-height: 100%;
}
body {
background-image: url('chrome-extension://kkdbagnomgggmhndoigmfkngichpnald/background.png');
background-repeat: no-repeat;
background-position: 0 0;
background-size: cover;
}