如何更改 chrome 扩展中的 offeredby/developer 信息?

How to change offeredby/developer information in chrome extension?

我刚刚创建了一个 chrome 扩展,我想知道如何更改 "offered by" 和 "developer" 信息。查看下面的屏幕截图,我已经在我所指的信息下划线了。

我找到了这个旧的 SO 线程 - How to specify author of Extension in Manifest file

我也试过这样的东西

{
   "browser_action": {
      "default_icon": "icons/logo.png",
      "default_popup": "popup.html",
      "default_title": "Timezone Convertor"
   },
   "description": "The all in one, timezone plugin you had been waiting for!",   
   "manifest_version": 2,
   "name": "Timezone Convertor",
   "permissions": [ "storage", "tabs", "http://*/*", "https://*/*" ],
   "update_url": "https://clients2.google.com/service/update2/crx",
   "version": "1.5",
   "authors": [{"name": "Ali Rizvi", "email": "example@gmail.com"}, {"name": "Yasser R Shaikh", "email": "example@gmail.com"}]
}

但是没用。 Google 的清单文档也没有太多关于它的信息。

那些在清单 v1 中(也在 here 上解释)。现在它们在清单中没有改变。

相反,您必须在开发人员仪表板的底部更改它。 (https://chrome.google.com/webstore/developer/dashboard)