为Google表格启用内联安装添加

时间:2017-05-28 11:21:43

标签: google-apps-marketplace chrome-web-store gsuite

我已经开发了一个Google Spreadsheet Add On。我想在我的网站上添加Inline Installation选项。但是我的插件被添加为谷歌Chrome扩展程序,而不是正常的安装添加。

预期结果:在用户帐户上安装附加组件。 这是代码的要点:

<html>
    <head>
        <title>Inline Installtion</title>
        <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/jjkkhnadaddgofdoapkbdemklgkcnmld">
        <link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet">
        <link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" />
        <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
        <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
        <script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
    </head>
    <body>
        <div class="container">
            <div class="section">
                <div class="row">
                    <div class="col-sm-2">
                        <div class="">
                            <h5 class=""></h5>
                        </div>
                    </div><!-- left div/column -->
                    <div class="col-sm-8 form_div">
                        <br>
                        <br>
                        <br>
                        <br>
                        <div class="form-group main_button">
                            <div class="col-lg-10 col-lg-offset-2">
                                <div class="col-lg-4"></div>
                                <div class="col-lg-4">
                                    <button type="submit" class="btn btn-primary" id="install-button">Add to Chrome</button>
                                </div>
                                <div class="col-lg-4"></div>
                            </div>
                        </div>
                    </div>
                    <div class="col-sm-2">
                        <div class="">
                            <h5 class="center"></h5>
                        </div>
                    </div><!-- right div/column -->
                </div><!-- row -->
            </div><!-- section -->
        </div><!-- container -->
        <script>
            $(document).ready(function() {
                function successCallback(e)
                {
                    console.log("Success");
                    console.log(e);
                }

                function failureCallback(e)
                {
                    console.log("Failure");
                    console.log(e);
                }

                $("#install-button").click(function(event) {
                    chrome.webstore.install("https://chrome.google.com/webstore/detail/jjkkhnadaddgofdoapkbdemklgkcnmld", successCallback, failureCallback);
                });
            });
        </script>
    </body>
</html>

所以我的问题是:它可以做到吗?如果是,我如何为Google电子表格AddOn启用内联安装?

非常感谢帮助。谢谢。

2 个答案:

答案 0 :(得分:2)

不,Google不允许在您的网站中嵌入插件。

还有另一种方法可以在您的网站上显示您的Google Apps加载项。

只需在var PartnerTypeName = new HashSet<string>(new string[]{"PSUD", "ABCD", "SERP", "PSUD"}); if (new string[]{"PSUD","PDST","PDLR"}.Any(PartnerTypeName.Contains) && !new string[]{"SERP","Contractors"}.Any(PartnerTypeName.Contains)) { } 等网站上显示市场链接快照

<强> LINK

OR

以HTML格式从市场中删除数据并将其显示在网站上。

答案 1 :(得分:0)

按照Publishing an Add-on详细说明将此作为附加组件发布的必要步骤。由于网上商店适用于应用和扩展,因此无法在Chrome网上应用店中找到加载项。附加组件包含在Google Marketplace中。

如果您想使用它,只需转到Google Marketplace并输入您创建的加载项的名称。您将被要求安装它,允许权限并最终能够使用它。您可以通过选中电子表格中的加载项菜单按钮来检查是否已成功安装。