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?
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.
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
In fact, a GAS manifest file from Chrome Web Store looks like this:
{
"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?