I am developing a google chrome extension using the manifest v3, I read the manifest docs from here but found that did not contains popup settings, in v2 of manifest, we could set up popup like this:
"browser_action" : {
"default_icon" : {
"19" : "/logo.png" ,
"38" : "/logo.png"
} ,
"default_popup" : "/popup/index.html"
} ,
how to set the default popup page in manifest v3 of google chrome extension?