Skip to content

Latest commit

 

History

History
64 lines (48 loc) · 1.21 KB

README.md

File metadata and controls

64 lines (48 loc) · 1.21 KB

chrome-storage-promise

npm version Bower version Dependency Status Build 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.