在我的网站上,以编程方式启动Chrome扩展程序的安装

时间:2017-06-10 09:00:14

标签: javascript google-chrome-extension

如何在我的网络应用程序中实现此功能?

go to this location for better understanding

这是显示扩展添加弹出窗口的图像:

and here is the image showing the extension adding pop up.

Stack Overflow和Google中的任何地方都告诉我们不能添加扩展弹出窗口,如:

How to programmatically open chrome extension popup.html

我们如何显示此提醒“添加扩展名”?

1 个答案:

答案 0 :(得分:1)

您要实现的目标是Inline Plugin Installation

预备知识:

在添加内联安装之前,您必须:

  1. Publish您在Chrome网上商店的插件。

  2. 必须在Google Webmasters - Verified Site Requirement

  3. 上验证您的域名

    安装:

    然后,要提示用户在他们仍在您的网站上时安装插件(而不是重定向到Chrome Webstore),请按照以下步骤操作:

    1. 在您的Webstore插件中添加<Link />,例如

      <link rel="chrome-webstore-item" href="https://chrome.google.com/webstore/detail/itemID">
      

      更多详情here

    2. 触发安装(比如用户点击按钮后),

      $('#install').on('click', function(){
            if(window.chrome){
               chrome.webstore.install(url, successCallback, failureCallback)
          }
      })
      
    3. 请务必结帐Official Documentation以获取更多信息。