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

时间:2016-08-31 06:42:06

标签: google-chrome-extension chrome-web-store

我刚刚创建了一个chrome扩展程序,我想知道如何更改“提供者”和“开发者”信息。查看下面的屏幕截图,我已经强调了我所指的信息。

enter image description here

我发现这是一个旧的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"}]
}

但它不起作用。谷歌的清单文档也没有太多关于它的信息。

1 个答案:

答案 0 :(得分:3)

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

相反,您必须在开发人员信息中心底部更改它。 (https://chrome.google.com/webstore/developer/dashboard

Instructions