Relevant course file: [52. Use the Chrome API to get the tab](https://github.com/scrimba/learn-javascript/blob/main/5.%20Build%20a%20Chrome%20Extension/52.%20Use%20the%20Chrome%20API%20to%20get%20the%20tab/index.js) I am accessing the browser API using: ``` chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) { console.log(tabs); ``` In Google Chrome, the object returned is this:  In Microsoft Edge, the object returned is this:  This [unanswered StackOverflow question](https://stackoverflow.com/questions/44382698/why-browser-tabs-query-is-not-working-in-edge-extension) was the only thing I could find online. How do I get current tab URL in Microsoft Edge?