使用 javascript 删除组选项卡

Delete group tab with javascript

我想使用 JavaScript 删除群组选项卡。

我有当前选项卡 ID,并由此获得当前组选项卡 ID(如果当前选项卡不在组选项卡中,则为 returns -1)。

现在想知道有没有这样的:

chrome.tabs.remove(tabId)

但是对于组选项卡,更像是:

chrome.tabGroups.remove(groupId).

如果有帮助,这是我的代码:

chrome.tabs.query({ active: true, currentWindow: true }, async function (tabs) {
    console.log(tabs[0].id, tabs[0].groupId);
    let currentTab = tabs[0].id;
    let currentGroupId = tabs[0].groupId;

    //get all the infos about the group
    let infos = await chrome.tabGroups.get(tabs[0].groupId);
  }
);

使用 chrome.tabs.query 查找具有相同 groupId 的选项卡,然后使用这些选项卡的 ID 数组调用 chrome.tabs.remove:

async function closeGroup() {
  const [tab] = await chrome.tabs.query({active: true, currentWindow: true});
  const groupTabs = await chrome.tabs.query({groupId: tab.groupId});
  await chrome.tabs.remove(groupTabs.map(t => t.id));
}