possible fix for #27
This commit is contained in:
parent
1872fbcb3c
commit
abca844d5d
1 changed files with 3 additions and 3 deletions
|
@ -188,7 +188,7 @@ function match({url, tabId}) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (prefs.exactMatch === false) {
|
else if (prefs.exactMatch === false) {
|
||||||
return s.endsWith(h) || h.endsWith(s);
|
return s.endsWith('.' + h) || h.endsWith('.' + s);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -201,7 +201,7 @@ function match({url, tabId}) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (prefs.exactMatch === false) {
|
else if (prefs.exactMatch === false) {
|
||||||
return s.endsWith(h) || h.endsWith(s);
|
return s.endsWith('.' + h) || h.endsWith('.' + s);
|
||||||
}
|
}
|
||||||
}) === false;
|
}) === false;
|
||||||
}
|
}
|
||||||
|
@ -216,7 +216,7 @@ function match({url, tabId}) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
else if (prefs.exactMatch === false) {
|
else if (prefs.exactMatch === false) {
|
||||||
return s.endsWith(h) || h.endsWith(s);
|
return s.endsWith('.' + h) || h.endsWith('.' + s);
|
||||||
}
|
}
|
||||||
}).shift();
|
}).shift();
|
||||||
let s = prefs.custom[key] || prefs.custom['*'];
|
let s = prefs.custom[key] || prefs.custom['*'];
|
||||||
|
|
Loading…
Reference in a new issue