Extension development: How to move tab from one workspace to another?
-
IgorBialas last edited by
Lately I've been working on a extension helping a user to quickly move their tabs from one window to another, including moving from one window's X workspace to second window's Y workspace.
I've gotten to a trouble, in command chrome.tabs.move() in MoveProperties it's not possible to use the workspaceId, so I can change it in that way. I also cannot change it by chrome.tabs.get() and then change the tab.workspaceId there.
So my question is if there is any way to actually move - change the workspace and not to close it and reopen in different workspace (actually that would be good enough too because in opening new tab method it's also not possible to specify the workspace one want to open it in.).
-