Is there a way to get tabs.executeScript working on containered tabs when using with Firefox multi-account container add-on?
For example, the following code would work if opened tab has no-container but not working if opened tab is in a container.
browser.tabs.create({url: url}, (tab) => {
browser.tabs.executeScript(tab.id, {
code: `console.log('abc');`
});
});