How to access the browserAction on a Firefox extension while using manifest version 3?
From the background.js trying to access the browserAction as documented here, it shows as undefined.
How to access the browserAction on a Firefox extension while using manifest version 3?
From the background.js trying to access the browserAction as documented here, it shows as undefined.
Copyright © 2021 Jogjafile Inc.
In manifest version 3, Chrome replaced
browserActionandpageActionwith a unified action API. For example, in a Chrome MV3 extension, one would usechrome.actioninstead ofchrome.browserAction.Which seems to be mirrored in Mozilla Firefox manifest version 3 adaptation, while still not having the documentation updated.