我想构建一个可以在Google Apps Marketplace上列出的应用程序,以便组织管理员可以一键安装它。
该应用程序通过Gmail中的侧边栏与Google进行互动。我已经能够通过“通过URL添加小工具”GMail Labs功能开始测试,但现在我想将其打包在管理员可以同时向所有用户推出的应用程序中。
Google's documentation for application manifests提到了如何添加上下文小工具,但没有提到边栏小工具。有没有人有在应用程序清单中添加侧边栏小工具的经验?
我想嵌入的侧边栏示例:
<Module>
<ModulePrefs height="400" title="Mike's First Sidebar!">
<Require feature="views"/>
<Require feature="dynamic-height"/>
<Require feature="settitle"/>
</ModulePrefs>
<Content type="html" view="home">
<![CDATA[
<h2>Todo:</h2>
<ul>
<li>Create a sidebar gadget</li>
<li>Add it to an application</li>
<li>List the application on the marketplace</li>
</ul>
]]>
</Content>
</Module>
答案 0 :(得分:1)
缺少文档仅仅是因为它不是受支持的功能。