Files
zk-chat-extension/source/options-storage.js
AtHeartEngineer 31d90e7f6f Initial commit
2022-07-12 20:49:32 -04:00

15 lines
251 B
JavaScript

import OptionsSync from 'webext-options-sync';
export default new OptionsSync({
defaults: {
colorRed: 244,
colorGreen: 67,
colorBlue: 54,
text: 'Set a text!',
},
migrations: [
OptionsSync.migrations.removeUnused,
],
logging: true,
});