-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can't change tab [Windows] #2
Comments
@cliffordfajardo I am using Windows. I can see tabs, but I can't change them. |
I'll try to setup a Windows environment and fix this. Thanks for reporting this! Some follow up questions:
|
version : Version 61.0.3163.100 (Official Build) (64-bit) |
@cliffordfajardo I have a windows environment i could try this on. I'l get to it later today. |
@Olian04 - in this branch I tried to use I also tried writing this in callback style and that didn't fix the issue. A temporary fix I think (needs testing) is to just grab all the tabs for the current window ONLY, as opposed to all browser windows for the Windows operating system. The original code should stay the same for Linux/Mac. Determining OS: I think we'll need to do something like //use destructuring to extract the os object.
const {os} = await browser.runtime.getPlatformInfo()
if(os === 'win') {
//grab all the tabs for the current window
} else {
//use the original code
} I'll look at this probably on Friday. @Olian04 - just wanted to thank you for taking your time to learn about Cato and it's inner workings! Your the first officla contributor with your PR. Hope I'm not being to nit-picky on the details for you 💪 Cheers |
Just came here to report this. Excellent work @cliffordfajardo - looking forward to a fix (: |
@cliffordfajardo Have a look on this extension, it's open source and has the ability to change window on windows. |
Hi @cliffordfajardo, just came here to report this too for Mac. When I type in "change to youtube" and have a youtube link up in another tab, it does not go there. No tabs show like in the GIF. Find Bookmark also has the same issue. Nothing will show. Thanks - a :) |
@sendsent - I’m curious, what version of Google? Thanks for reporting! |
@cliffordfajardo - Version 63.0.3239.132 (Official Build) (64-bit) |
Has a fix for this been implemented? |
Same thing for me, but what makes it more strange is that when I opened a console(inspect the extension element) and tried to see if there're some errors, it functions well! OS: Mac Mojava 10.14 |
When I press
Enter
nothing happens.The text was updated successfully, but these errors were encountered: