4

我想构建一个可以在 Google Apps Marketplace 上列出的应用程序,以便组织管理员可以一键安装它。

该应用程序通过 Gmail 中的侧边栏与 Google 进行交互。我已经能够使用“通过 URL 添加小工具”GMail 实验室功能开始对此进行测试,但现在我想将它打包到管理员可以同时向所有用户推出的应用程序中。

Google 的应用程序清单文档提到了如何添加上下文小工具,但没有提到边栏小工具。有没有人有在应用程序清单中添加侧边栏小工具的经验?

我想嵌入的侧边栏示例:

<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>
4

1 回答 1

1

缺少文档仅仅是因为这不是受支持的功能。

于 2012-07-26T00:46:27.767 回答