chrome-extensions-samples
chrome-extensions-samples copied to clipboard
How to listen window moved progress?
Hello there, how to listen window moved progress? im using event chrome.windows.onBoundsChanged but this event only trigger after move finish
Hello there, how to listen window moved progress? im using event chrome.windows.onBoundsChanged but this event only trigger after move finish
+1
In what context? @noiseXfragment
Content script? Background Script? Popup page?
If there's a window reference, you can always attach an event listener.
window.addEventListener('resize', function(event){ console.count('Count of Resizes')// Monitor the actual resize count });
This isn't currently supported. You can make a feature request on crbug.com