({ count, tab })
| 335 | await chrome.sessions.restore(null); |
| 336 | }), |
| 337 | async togglePinTab({ count, tab }) { |
| 338 | await forCountTabs(count, tab, (tab) => { |
| 339 | chrome.tabs.update(tab.id, { pinned: !tab.pinned }); |
| 340 | }); |
| 341 | }, |
| 342 | toggleMuteTab, |
| 343 | moveTabLeft: moveTab, |
| 344 | moveTabRight: moveTab, |
nothing calls this directly
no test coverage detected