sessions-ext/src/options-storage.ts

11 lines
275 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: {
2022-11-27 08:50:12 +00:00
apiUrl: 'https://sessions.tribalwarshelp.com',
2022-11-26 07:58:43 +00:00
apiKey: '',
2022-11-15 06:26:00 +00:00
encryptionPassword: 'password',
},
migrations: [OptionsSync.migrations.removeUnused],
});