190
191
192
193
194
195
196
197
198
199
200
201
202
203
|
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
|
+
|
"nextTab",
"visitPreviousTab",
"firstTab",
"lastTab",
"duplicateTab",
"togglePinTab",
"backRemoveTab",
"forwardRemoveTab",
"createTabHome",
"toggleMuteTab",
"removeTab",
"restoreTab",
"moveTabToNewWindow",
"closeTabsOnLeft","closeTabsOnRight",
"closeOtherTabs",
|
383
384
385
386
387
388
389
390
391
392
393
394
395
396
|
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
+
|
lastTab: ["Go to the last tab", { background: true }]
createTab: ["Create new tab", { background: true, repeatLimit: 20 }]
createTabHome: ["Create new tab with home page", { background: true, repeatLimit: 20 }]
duplicateTab: ["Duplicate current tab", { background: true, repeatLimit: 20 }]
removeTab: ["Close current tab", { background: true, repeatLimit: chrome.session?.MAX_SESSION_RESULTS ? 25 }]
backRemoveTab: ["Close current tab and move back", { background: true, noRepeat: true }]
forwardRemoveTab: ["Close current tab and move forward", { background: true, noRepeat: true }]
restoreTab: ["Restore closed tab", { background: true, repeatLimit: 20 }]
moveTabToNewWindow: ["Move tab to new window", { background: true }]
togglePinTab: ["Pin or unpin current tab", { background: true, noRepeat: true }]
toggleMuteTab: ["Mute or unmute current tab", { background: true, noRepeat: true }]
closeTabsOnLeft: ["Close tabs on the left", {background: true, noRepeat: true}]
|