google chrome 扩展清单 v3 中的弹出设置在哪里

where is the popup settings in google chrome extension manifest v3

我正在使用清单 v3 开发一个 google chrome 扩展,我从 here 阅读了清单文档,但发现它不包含弹出设置,在清单的 v2 中,我们可以像这样设置弹出窗口:

"browser_action" : {
    "default_icon" : {
      "19" : "/logo.png" ,
      "38" : "/logo.png"
    } ,
    "default_popup" : "/popup/index.html"
  } ,

如何在 google chrome 扩展的清单 v3 中设置默认弹出页面?

ok,突然发现popup设置被移到了actions上,可能是这样设置的:

{
  "name": "Action Extension",
  ...
  "action": {
    "default_icon": {              // optional
      "16": "images/icon16.png",   // optional
      "24": "images/icon24.png",   // optional
      "32": "images/icon32.png"    // optional
    },
    "default_title": "Click Me",   // optional, shown in tooltip
    "default_popup": "popup.html"  // optional
  },
  ...
}

这里是 docs.