简体   繁体   English

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

[英]Google Document or Spreadsheet Add-on being published as Chrome Extention in G Suit and Chrome Webstore

I am trying to deploy as Docs add-on and publish the Add-on to both Chrome Webstore as well as G Suit. 我正在尝试将其作为Docs插件进行部署,并将该插件发布到Chrome Webstore和G Suit。 The problem that I am getting is that when I click on "Preview changes" button before publishing the add-on, I am being redirected to a screen which shows that the add-on is a Chrome Extension. 我遇到的问题是,在发布加载项之前单击“预览更改”按钮时,我被重定向到一个屏幕,该屏幕显示该加载项是Chrome扩展程序。 I have not had this problem in the past until recently when I have tried publishing one of my add-ons as unlisted, which got published as Chrome Extension instead of Installable Add-on for Google Documents. 直到最近,当我尝试将我的一个附件发布为不公开列表时,我才再遇到这个问题,该附件作为Chrome扩展程序而不是Google文档的可安装附件发布。 I have also got a similar add-on published for Google Sheets, which had some problems but I have managed to fix them and updated the Chrome listing too without any complications. 我也为Google表格发布了类似的加载项,该加载项有一些问题,但我设法进行了修复,并且也更新了Chrome列表,没有任何麻烦。 I have emailed Google Add-on advisor, but so far had no response. 我已经通过电子邮件发送给Google加载项顾问,但到目前为止没有任何回复。

I wonder if anyone else has experienced the same problem with publishing Add-ons? 我想知道是否有人在发布加载项时遇到了同样的问题?

Also, Add-on Curator asked me to post this question here and Google+ Add-on Developer Community 另外,附加组件管理者要求我在此处和Google+附加组件开发者社区中发布此问题

here is my manifest.json file content: 这是我的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"
  }
}

UPDATE: To publish your add-on, please follow the procedure described on https://developers.google.com/gsuite/add-ons/how-tos/publish-addons 更新:要发布您的加载项,请按照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". AFAIK有关G Suite附加组件的旧版Chrome网上应用店信息中心(CWS)处于“维护模式”一段时间,这意味着Google团队没有预算来适应或改进非关键/必须具备的功能,特别是因为他们已经有了一个“新开发人员仪表板”,并且宣布附件发布过程将很快“改变”。

From https://developers.google.com/gsuite/add-ons/how-tos/publish-addons taken on March 9, 2019 摘自2019年3月9日拍摄的https://developers.google.com/gsuite/add-ons/how-tos/publish-addons

Warning : Originally editor add-ons were published to the Chrome Web Store, and could optionally be published in the G Suite Marketplace to make them domain-wide installable. 警告 :最初,编辑器附加组件已发布到Chrome网上应用店,并且可以有选择地在G Suite市场中发布,以使其可在整个域安装。

Publishing to the G Suite Marketplace is no longer optional . 发布到G Suite市场不再是可选的 The publishing instructions below have been revised to reflect this. 下面的发布说明已被修改以反映这一点。 See Chrome Web Store migration for more details. 有关更多详细信息,请参见Chrome Web Store迁移

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在Chrome商店中发布电子表格插件 - Publish a Spreadsheet Add-on in the Chrome Store 通过 G-Suite Marketplace SDK 发布时不会创建附加菜单,但会通过 Chrome 网上应用店创建 - Add-on menu doesn't get created when published through G-Suite Marketplace SDK, but does through Chrome Web Store 将Google Apps脚本发布到Chrome Webstore - Publishing Google Apps Script to Chrome Webstore 我发布了一个 Google 表格插件,但它没有出现在 G Suite 市场列表中 - I published a Google Sheets add-on, but it's not appearing in the G Suite Marketplace list 从Chrome商店安装插件后,Google表格和文档脚本无法创建插件菜单 - Google Sheets & Docs Script fails to create add-on menu when add-on is installed from Chrome store Google Picker API getOAuthToken() 在作为私有附加组件发布后抛出服务器错误 - Google Picker API getOAuthToken() throws server error after being published as private add-on Google 电子表格插件变灰 - Google Spreadsheet Add-On Grayed out 如何获取表单提交者或发布的加载项中的文档的日期 - How to get the date of the form submitter or the document in a published add-on 将 chrome 扩展程序连接到 Google 电子表格 - Connecting chrome extension to Google spreadsheet Chrome扩展程序(Angularjs)至Gmail附加组件(应用程序) - Chrome extension(Angularjs) to Gmail Add-on (Appscript)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM