autoclose-newtab/background.js

7 lines
215 B
JavaScript

function autoCloseNewTab(tabId, changeInfo, tab) {
console.log(tabId, changeInfo, tab)
if (tab.url.trim() === "about:newtab")
browser.tabs.remove([tabId]);
}
browser.tabs.onUpdated.addListener(autoCloseNewTab);