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 d56c457 commit f3a8943Copy full SHA for f3a8943
background.js
@@ -70,7 +70,7 @@ restore();
70
chrome.storage.onChanged.addListener((result) => {
71
if (typeof result.options === 'object' && result.options !== null)
72
options = result.options.newValue;
73
- if (typeof result.exclude === 'object' && result.exclude !== null) {
+ if (typeof result.exclude === 'object' && result.exclude !== null && Array.isArray(result.exclude.newValue)) {
74
exclude = result.exclude.newValue;
75
updateContentScripts();
76
}
0 commit comments