Skip to content

Instantly share code, notes, and snippets.

@tab1293
Created February 4, 2016 22:33
Show Gist options
  • Save tab1293/a87eac8cf411700374f6 to your computer and use it in GitHub Desktop.
Save tab1293/a87eac8cf411700374f6 to your computer and use it in GitHub Desktop.
Chrome Storage Check
// Request storage usage and capacity left
window.webkitStorageInfo.queryUsageAndQuota(webkitStorageInfo.TEMPORARY,
//the type can be either TEMPORARY or PERSISTENT
function(used, remaining) {
console.log("Used quota: " + used + ", remaining quota: " + remaining);
}, function(e) {
console.log('Error', e);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment