Sticky.findByUrl = function findByUrl(url, db) {
  const store = this.objectStore(db);
  const items = [];
  return new Promise((resolve, reject) => {
    const index   = store.index('url');