Microsoft Edge API tab data does not contain URL
Opened this issue · 0 comments
derekjtong commented
Relevant course file: 52. Use the Chrome API to get the tab
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 was the only thing I could find online.
How do I get current tab URL in Microsoft Edge?