chrome-storage-promise

0.1.0 • Public • Published

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.

Package Sidebar

Install

npm i chrome-storage-promise

Weekly Downloads

5

Version

0.1.0

License

MIT

Last publish

Collaborators

  • akiomik