rshev / MoveTabToNextWindow

Move tab to next window browser context menu/button extension
MIT License
24 stars 4 forks source link

Some tabs are stuck in a final window #19

Open ubershmekel opened 1 month ago

ubershmekel commented 1 month ago

Seems this complaint already exists on the store reviews

The tabs can only move in one direction. From window 1 to 2 to 3. You can't move them from 3 to 1. Last window is the terminal stop. Using on Chrome version 123.0.6312.87. I think I know why it gets stuck on a window I think it's because of special windows - that cannot take a tab. The list of windows needs to filtered for 'normal' windows, like: let normalWindows = windows.filter(win => win.type === "normal");

For me, I see that in windowA clicking the extension does nothing, while in windowB clicking the extension sends the current tab to windowA.

rshev commented 1 month ago

Please feel free to open a pull request. I'll try to find some time to look into it myself as well.