If I have code similar to:
var filter = {
  url:
  [
    {hostContains: "example.com"},
    {hostPrefix: "developer"}
  ]
}
function logOnDOMContentLoaded(details) {
  console.log("onDOMContentLoaded: " + details.url);
}
browser.webNavigation.onDOMContentLoaded.addListener(logOnDOMContentLoaded, filter);
The details.url returns the loaded URL. What if I want the original URL that the user entered in the URL bar? is there any way to get this?
