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 d075456 commit 3d73f59Copy full SHA for 3d73f59
src/browser/extension/options/syncOptions.js
@@ -47,7 +47,7 @@ export const getOptionsFromBg = callback => {
47
};
48
49
export const isAllowed = (localOptions = options) => (
50
- !localOptions || !localOptions.inject && location.href.match(localOptions.urls.split('\n').join('|'))
+ !localOptions || localOptions.inject || location.href.match(localOptions.urls.split('\n').join('|'))
51
);
52
53
export default {
0 commit comments