mirror of
https://github.com/obsqrbtz/goose-highlighter.git
synced 2026-04-08 20:19:06 +03:00
9 lines
215 B
JavaScript
9 lines
215 B
JavaScript
export async function getLists() {
|
|
const { lists } = await chrome.storage.local.get("lists");
|
|
return lists || [];
|
|
}
|
|
|
|
export async function saveLists(lists) {
|
|
await chrome.storage.local.set({ lists });
|
|
}
|