Ignore cases for tab filtering
This commit is contained in:
parent
68fa80e1a3
commit
0f3ad23085
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ const closeTabForce = (id) => {
|
|||
const queryByKeyword = (keyword, excludePinned = false) => {
|
||||
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
||||
return tabs.filter((t) => {
|
||||
return t.url.includes(keyword) || t.title && t.title.includes(keyword);
|
||||
return t.url.toLowerCase().includes(keyword.toLowerCase()) ||
|
||||
t.title && t.title.toLowerCase().includes(keyword.toLowerCase());
|
||||
}).filter((t) => {
|
||||
return !(excludePinned && t.pinned);
|
||||
});
|
||||
|
|
Reference in a new issue