Skip to content

Commit

Permalink
feat: export schedule function to be added to handler
Browse files Browse the repository at this point in the history
  • Loading branch information
DereC4 committed Nov 17, 2024
1 parent ebcc0aa commit d7a4e1d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/pages/background/lib/exportSchedule.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
*
*/
export default async function getExtensionStorage() {
try {
const storageData = await chrome.storage.local.get(null);
console.log(storageData);
} catch (error) {
console.error('Error getting storage data:', error);
}
}

0 comments on commit d7a4e1d

Please sign in to comment.