From 44f38c4dea6d517bb7657063ed2394745945c1f8 Mon Sep 17 00:00:00 2001 From: toasted-nutbread Date: Sat, 5 Sep 2020 22:03:35 -0400 Subject: Popup window (#773) * Add option usePopupWindow * Add PopupWindow class * Add support for creating PopupWindow --- ext/bg/js/options.js | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ext/bg/js') diff --git a/ext/bg/js/options.js b/ext/bg/js/options.js index c513f572..1cabf2cf 100644 --- a/ext/bg/js/options.js +++ b/ext/bg/js/options.js @@ -467,6 +467,7 @@ class OptionsUtil { static _updateVersion4(options) { // Version 4 changes: // Options conditions converted to string representations. + // Added usePopupWindow. for (const {conditionGroups} of options.profiles) { for (const {conditions} of conditionGroups) { for (const condition of conditions) { @@ -479,6 +480,9 @@ class OptionsUtil { } } } + for (const {options: profileOptions} of options.profiles) { + profileOptions.general.usePopupWindow = false; + } return options; } } -- cgit v1.2.3