Google文档或电子表格插件在G Suite和Chrome Webstore中作为Chrome扩展程序发布

问题描述 投票:0回答:1

我正在尝试部署作为文档附加组件并将附加组件发布到Chrome Webstore和G Suit。我得到的问题是,当我在发布附加组件之前点击“预览更改”按钮时,我被重定向到一个屏幕,显示该附加组件是Chrome扩展程序。直到最近我才尝试将我的一个附加组件发布为未列出的内容,并且已发布为Chrome扩展程序而不是Google文档的Installable Add-on,我之前没有遇到此问题。我还为Google表格发布了一个类似的附加组件,但是我遇到了一些问题,但我已经设法修复它们并更新了Chrome列表而没有任何复杂情况。我已通过电子邮件发送Google附加组件顾问,但到目前为止还没有回应。

我想知道是否有其他人在发布附加组件时遇到了同样的问题?

此外,附加策展人让我在这里发布这个问题和Google+ Add-on Developer Community

这是我的manifest.json文件内容:

{
  "manifest_version": 2,
  "name": "Add-on Name",
  "version": "1",
  "description": "My Description of the add-on",
  "icons": {
    "128": "icons/add-on_128.png",
    "96": "icons/add-on_96.png",
    "48": "icons/add-on_48.png",
    "32": "icons/add-on_32.png",
    "16": "icons/add-on_16.png"
  },
  "container": ["GOOGLE_DRIVE"],
  "api_console_project_id": "add-on_id",
  "app" : {
    "background": {
      "persistent": false
    }
  },
  "launch" : {
    "web_url" : "example.html"
  }
}
google-apps-script chrome-web-store google-apps-script-addon
1个回答
2
投票

更新:要发布您的插件,请按照https://developers.google.com/gsuite/add-ons/how-tos/publish-addons上描述的步骤进行操作


AFAIK the old Chrome Web Store Dashboard (CWS) regarding the G Suite Add-ons is in "maintenance mode" from a while, meaning that the Google team have no budget to adapt or improve non-critical/must-have features, specially because they already have a "new Developer Dashboard" and that was announced that the add-ons publishing process will change "soon".

来自于2019年3月9日拍摄的https://developers.google.com/gsuite/add-ons/how-tos/publish-addons

警告:最初编辑器附加组件已发布到Chrome网上应用店,并且可以选择在G Suite Marketplace中发布,以使其可在全域范围内安装。

发布到G Suite Marketplace不再是可选的。以下出版说明已经过修订,以反映这一点。有关详细信息,请参阅Chrome Web Store migration

© www.soinside.com 2019 - 2024. All rights reserved.