简体   繁体   English

是否可以将 Google Apps Script Web App 发布到 G Suite Marketplace?

[英]Is it possible to publish a Google Apps Script Web App to G Suite Marketplace?

I know it is possible to publish a Google Script Web App to Chrome Web Store, but it's possible to publish in Google Suite Marketplace?我知道可以将 Google Script Web App 发布到 Chrome Web Store,但是可以在 Google Suite Marketplace 中发布吗?

There's no "Publish to Marketplace" option in GAS editor, but I've looked at a Google Script-based apps manifest files from Chrome Web Store, and I think there's a possibility to do it. GAS 编辑器中没有“发布到市场”选项,但我查看了 Chrome 网上应用店中基于 Google 脚本的应用程序清单文件,我认为有可能做到这一点。

Unfortunately, I have some troubles with the last step of publishing (filling out the Google G Suite Marketplace Listing Review Request) so I'm not sure if a Google Script-based app complies with the G Suite Marketplace requirements不幸的是,我在发布的最后一步(填写 Google G Suite Marketplace Listing Review Request)遇到了一些麻烦,所以我不确定基于 Google Script 的应用程序是否符合 G Suite Marketplace 要求

In fact, a GAS manifest file from Chrome Web Store looks like this:事实上,Chrome Web Store 中的 GAS 清单文件如下所示:

{
    "update_url": "https://clients2.google.com/service/update2/crx",
    "name":"***NAME_OF_APP***",
    "description":"",
    "version":"10",
    "app":
        {
            "urls":["***URL_TO_PUBLISHED_WEBAPP***"], //Is like a normal WebApp, or it's something more than that?
            "launch":
            {
                "web_url":"***URL_TO_PUBLISHED_WEBAPP***"
            }
        },
    "icons":{"128":"script-icon.png"},"manifest_version":2
}

So, what do you think?所以你怎么看?

Yes, now you can!是的,现在你可以了!

This feature became active not so long ago, but now you can publish Google Script Web Apps to G Suite Marketplace.此功能不久前才开始使用,但现在您可以将 Google Script Web Apps 发布到 G Suite Marketplace。
Google Developers website has a good how-to instruction on this topic. Google Developers 网站上有关于此主题的很好的操作说明

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

相关问题 如何将 Google Apps Script Web 应用程序发布到 G-Suite Marketplace? - How to publish a Google Apps Script web app to the G-Suite Marketplace? 无法将 Google App Script 发布到 G Suite Marketplace 以供域管理员查找 - Unable publish Google App Script to the G Suite Marketplace for domain administrators to find 无法将Google编辑器附加组件发布到G Suite市场 - Unable to publish Google editor add-on to the G Suite Marketplace Google Apps 脚本应用程序发布到 Google Apps 市场 - Google apps script application publish to google apps marketplace 将 Google Script Addon 发布到 G Suite Marketplace SDK - Publishing Google Script Addon to G Suite Marketplace SDK 将Google Apps脚本作为Web应用程序发布与将其作为服务发布 - Publish Google Apps Script as a Web App vs. publish it as a Service 使用 Google Apps 脚本从 G Suite 管理控制台中删除 web 应用程序 - Remove the web apps from the G Suite Admin Console by using Google Apps Script 使用新的 G Suite Marketplace 流程私下发布 Google Sheets 插件(无需验证) - Publish Google Sheets addon privately (no-verification) with new G Suite Marketplace process 通过 Google Apps 脚本将电子表格发布为网络应用 - Publish a spreadsheet as a web app through Google Apps Script G Suite Marketplace SDK [发布] 按钮总是灰显? - G Suite Marketplace SDK [Publish] button always greyed out?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM