>>442
/*ピン留めしていないタブをすべて閉じる*/
executeInBackground(() => {
getCurrentWindowTabs().then(tabs => {
for(let i=0; i<tabs.length; i++) {
if(!tabs[i].pinned) browser.tabs.remove(tabs[i].id);
}
});
}, []);