Lets switchTab switch to other Chrome windows, with focus

This commit is contained in:
Adam Karlsten 2022-01-15 01:58:28 +01:00
parent 11367af2e3
commit 76c820889f

View file

@ -224,8 +224,13 @@ function getBookmarks() {
// Lots of different actions
function switchTab(tab) {
chrome.tabs.highlight({
tabs: tab.index
tabs: tab.index,
windowId: tab.windowId
})
chrome.windows.update(
tab.windowId,
{ focused: true }
)
}
function goBack(tab) {
chrome.tabs.goBack({