sessions-ext/src/options-storage.ts

11 lines
268 B
TypeScript
Raw Normal View History

2022-11-15 06:26:00 +00:00
import OptionsSync from 'webext-options-sync';
export const optionsStorage = new OptionsSync({
defaults: {
apiUrl: 'https://tribalwarshelp.com',
apiToken: '',
encryptionPassword: 'password',
},
migrations: [OptionsSync.migrations.removeUnused],
});