mirror of
https://github.com/AtHeartEngineer/zk-chat-extension.git
synced 2026-01-09 12:57:54 -05:00
15 lines
251 B
JavaScript
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,
|
|
});
|