2 条评价
- 评分 4 / 5来自 Ahmed,3 年前Needs ability to move to the "last window that user had selected". Moving to "next window" is confusing if a person has 10 windows open.
Also, the "activate window after move" doesn't work. It doesn't activate the window neither by keyboard shortcut nor context menu.
Also, is not able to move multiple tabs. - 评分 4 / 5来自 Lej77,7 年前Could be useful but I have multiple windows and might need to move several times to get to the correct one. Therefore it would be nice if the moved tab became the active tab of the window it was moved to. Also I would like the window the tab was moved to gain focus after the tab has been moved.
here is some code to do that:
browser.tabs.update(tabId, {
active: true
});
browser.windows.update(tab.windowId, {
focused: true
});开发者回应
发布于 7 年前Thanks for the review. I had a very simple use case, so that's why the add-on is so simple. I'll add your suggestions and also a right-click context menu for the next versions.