summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/androidTest/assets/web_extensions/tabs-remove/background.js
blob: c6ec7aee333c3ef77538ada79f442f53e7d04ff1 (plain)
1
2
3
browser.tabs.query({ url: "*://*/*?tabToClose" }).then(([tab]) => {
  browser.tabs.remove(tab.id);
});