* feat(build): inline chrome-extension-toolkit fix: tsconfig docs: add chrome-extension-toolkit README.md chore: update imports fix: stores fix: chrome-extension-toolkit ForegroundMessenger fix: calendarBackgroundHandler fix: format and lint fix: path alias fix: add jsdom env and fix imports Co-authored-by: Sriram Hariharan <sghsri@gmail.com> * build: vite storybook config crx toolkit line --------- Co-authored-by: Sriram Hariharan <sghsri@gmail.com> Co-authored-by: Derek <derex1987@gmail.com>
22 lines
751 B
TypeScript
22 lines
751 B
TypeScript
import { createLocalStore } from '@chrome-extension-toolkit';
|
|
|
|
/**
|
|
* A store that is used for storing user options
|
|
*/
|
|
interface IExtensionStore {
|
|
/** These values are cached in storage, so that we can know the previous version that the extension was before the current update. Is only used for onUpdate */
|
|
version: string;
|
|
/** When was the last update */
|
|
lastUpdate: number;
|
|
/** The last version of the "What's New" popup that was shown to the user */
|
|
lastWhatsNewPopupVersion: number;
|
|
}
|
|
|
|
export const ExtensionStore = createLocalStore<IExtensionStore>('ExtensionStore', {
|
|
version: chrome.runtime.getManifest().version,
|
|
lastUpdate: Date.now(),
|
|
lastWhatsNewPopupVersion: 0,
|
|
});
|
|
|
|
// debugStore({ ExtensionStore });
|