0.1.0 • Published 9 years ago

chrome-storage-promise v0.1.0

Weekly downloads
210
License
MIT
Repository
github
Last release
9 years ago

chrome-storage-promise

npm version Bower version Dependency Status

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.

0.1.0

9 years ago

0.0.6

9 years ago

0.0.5

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago