chrome-storage-promise
v0.1.0
Published
A chrome.storage API wrapper that is using promise
Downloads
39
Maintainers
Readme
chrome-storage-promise
Installation
npm
npm install --save chrome-storage-promise
bower
bower install --save chrome-storage-promise
Usage
// set
chrome.storage.promise.local.set({'foo': 'bar'}).then(function() {
// resolved
console.log('set');
}, function(error) {
// rejected
console.log(error);
});
// get
chrome.storage.promise.local.get('foo').then(function(items) {
// resolved
console.log(items); // => {'foo': 'bar'}
}, function(error) {
// rejected
console.log(error);
});
Development
Build
npm install
npm run build
Test
npm install
npm run build
npm test
Lisence
The MIT License.