I have a chrome extension that accesses the active tab via this code:
chrome.tabs.query({ active: true }, (result) => { ... })
This has worked super well until a recent update, where I am no longer able to query the tab, with the following error printed in the console:
Tabs cannot be queried right now (user may be dragging a tab).
I tried this but it does not work. Any suggestions?