Files
UT-Registration-Plus/src/pages/background/events/onInstall.ts
2024-01-24 19:40:30 -06:00

9 lines
276 B
TypeScript

import { ExtensionStore } from '@shared/storage/ExtensionStore';
/**
* Called when the extension is first installed or synced onto a new machine
*/
export default async function onInstall() {
await ExtensionStore.set('version', chrome.runtime.getManifest().version);
}