Skip to content

Commit

Permalink
🔥 🔥 🔥 Add history & bookmarks search ⚡
Browse files Browse the repository at this point in the history
  • Loading branch information
nilooy committed Jun 30, 2022
1 parent 980747f commit d158bd1
Show file tree
Hide file tree
Showing 9 changed files with 594 additions and 268 deletions.
3 changes: 2 additions & 1 deletion src/background/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ browser.runtime.onInstalled.addListener(async () => {
keyLists.forEach((keyItem, index) => {
const indexKey = index + 1;
browser.storage.sync
.set({ [indexKey]: { id: indexKey, ...keyItem } })
// @ts-ignore
.set({ [indexKey]: { id: indexKey, ...keyItem } }) // TODO: Test carefully.
.then(() => browser.runtime.openOptionsPage());

// context menu
Expand Down
Loading

0 comments on commit d158bd1

Please sign in to comment.