Reputation: 51
Is it possible to Add custom URL to Google Apps for work app launcher? I have read that it may be possible to publish the URL as a marketplace app in the Google Apps Marketplace and then install that so that it will show up for my users domain-wide, but I am unsure of how to accomplish that...any suggestions?
Upvotes: 5
Views: 3282
Reputation: 4034
It is not only possible, but also quite straightforward.
The documentation surrounding it can be tricky to get to the best source though as plenty of out of date info is still in the googlesphere. Any page that is referencing the Google Apps Extensions console is out of date and won't get you anywhere
The best start is as you say, creating a Marketplace App. In truth there is very little that is app and more about simply the listing for an app. In this instance your 'app' is whatever link you want to set it to.
Because the process is tied up with the Apps Marketplace, there are more steps than will seem necessary, but it is tied up with much more potential. Jump through the hoops.
{
"manifest_version": 2,
"name": "Welcome Aboard",
"version": "0.0.0.1",
"description": "a plain text description",
"icons": {
"128": "icons/128x128-icon.png",
"16": "icons/16x16-icon.png"
},
"container": ["DOMAIN_INSTALLABLE"],
"api_console_project_id": "428464274542",
"app": {
"launch": {
"web_url": "http://www.example.com/morepath/"
}
}
}
That's it. It's a shame there is so much old info around, but this is the straightforward but long-winded way to add a link yo your Nav grid.
Upvotes: 10