We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ebf48f commit a6621d8Copy full SHA for a6621d8
package.json
@@ -17,7 +17,7 @@
17
"dependencies": {
18
"delay": "^4.3.0",
19
"webext-base-css": "^1.1.0",
20
- "webext-options-sync": "^1.2.0",
+ "webext-options-sync": "^1.2.4",
21
"webextension-polyfill": "^0.4.0"
22
},
23
"devDependencies": {
source/options-storage.js
@@ -10,7 +10,10 @@ const optionsStorage = new OptionsSync({
10
reuseTabs: false,
11
updateCountOnNavigation: false,
12
filterNotifications: false
13
- }
+ },
14
+ migrations: [
15
+ OptionsSync.migrations.removeUnused
16
+ ]
});
export default optionsStorage;
0 commit comments