使用Chrome检测Windows 8+中的自定义协议处理程序

时间:2015-03-17 19:47:30

标签: javascript google-chrome windows-8 protocols custom-protocol

我正在尝试检测我的应用程序是否已安装处理自定义协议并使用不同的浏览器工作。我查看了本网站上的其他问题,例如: How to detect browser's protocol handlers?, 并且已经查看了这样的资源,使其适用于大多数浏览器中的大多数平台。

在将此标记为重复之前,请听我说...

我能够让我的功能在Windows 8+以外的所有内容上运行。我无法像在Windows 7上那样在Chrome上使用窗口焦点方法,因为它会弹出要求我在商店中找到应用的消息。

在Chrome上的Windows 8+中检测自定义协议处理程序是否有任何方法(没有扩展名)?

更新:

使用onBlur检测它只适用于Windows 7,因为在8+中,如果它没有找到打开你的协议的东西,它会打开“从应用商店找到一些东西”对话框,使浏览器失去焦点。

2 个答案:

答案 0 :(得分:2)

嘿,我认为你走在了正确的轨道上。这绝对不是那么容易,但到目前为止Chrome并不是我的问题,更像Edge + IE,但我的解决方案是假设他们不支持协议,如果有任何失败或他们没有正确回应他们有时做。

模糊/焦点需要检查,但您需要结合可见性更改进行检查。 HTML5 Visiblity API和这篇文章about it帮助我找到了一个非常可靠的解决方案,除了上面提到的浏览器,因为它们与 navigator.msLaunchUri 函数有一些问题并且有自己的方法实施,不依赖于模糊/焦点。但是该功能被窃听,并且不能始终正确响应。

您可以找到我的代码集here。希望这可以帮助你,即使它有点迟到的答案。这适用于移动浏览器,但我没有测试多个但我的Android 6.0.2工作。从长远来看可能需要一些调整,但我认为它非常可靠。

(function() {
  var noProtocolHash = '#protocolXYnotsupported',
      checkDelay = 800, // apps might start slowly
      isBlurred = false,
      inCheck = false,
      inLauncherCheck = false,

  tabVisible = (function(){ 
      var stateKey, 
          eventKey, 
          keys = {
                  hidden: "visibilitychange",
                  webkitHidden: "webkitvisibilitychange",
                  mozHidden: "mozvisibilitychange",
                  msHidden: "msvisibilitychange"
      };
      for (stateKey in keys) {
          if (stateKey in document) {
              eventKey = keys[stateKey];
              break;
          }
      }
      return function(c) {
          if (c) document.addEventListener(eventKey, c);
          return !document[stateKey];
      }
  })(),

  isMSIE = function(){
    var rv = -1;

    if(navigator.appName == 'Microsoft Internet Explorer'){
      var ua = navigator.userAgent;
      var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
      if(re.exec(ua) != null){
        rv = parseFloat(RegExp.$1);
      }
    }
    else if(navigator.appName == 'Netscape'){
      var ua = navigator.userAgent;
      var re  = new RegExp("Trident/.*rv:([0-9]{1,}[\.0-9]{0,})");
      if(re.exec(ua) != null){
        rv = parseFloat(RegExp.$1);
      }
    }
    return (rv !== -1)? true: false;
  },

  isEdge = function(){
    return window.navigator.userAgent.indexOf("Edge") > -1;
  },

  checkIfFocusLost = function($el){
    try {
      document.location.href = $el.attr("href");
    } catch (ex) {
        document.location.href = document.location.href + '/' + noProtocolHash;
    }

    setTimeout(checkVisibility, checkDelay);
  },

  checkVisibility = function(){
    if(tabVisible() && !isBlurred){
      handleNoProtocol();
    }
    else {
      handleProtocol();
    }
  },

  handleNoProtocol = function(){
    $('.result').text('has no protocol');

    inLauncherCheck = false;
  },

  handleProtocol = function(){
    $('.result').text('has the protocol');

    inLauncherCheck = false;
  },

  checkHash = function(){
    if(document.location.hash === noProtocolHash){
      handleNoProtocol();
    }
  },

  checkLauncherProtocol = function($el){
    inLauncherCheck = true;

    navigator.msLaunchUri($el.attr("href"), function(){
      handleProtocol();
    }, 
    function(){
      handleNoProtocol();
    });

    setTimeout(function(){
      // fallback when edge is not responding correctly
      if(inLauncherCheck === true){
        handleNoProtocol();
      }
    }, 500);
  },

  checkIfHasProtocol = function($el){
    inCheck = true;

    if(isEdge() || isMSIE()){
      checkLauncherProtocol($el);
    }
    else {
      checkIfFocusLost($el)
    }
  };

  checkHash();
  tabVisible(function(){
    if(tabVisible() && inCheck){
      handleProtocol();
      inCheck = false;
    }    
  });

  window.addEventListener("blur", function(){
    isBlurred = true;   
  });

  window.addEventListener("focus", function(){
    isBlurred = false; 
    inCheck = false;
  });

  window.checkIfHasProtocol = checkIfHasProtocol;
})();

$('.protocol').click(function(e) {
  checkIfHasProtocol($(this));
  e.preventDefault();
});

我的代码经过Win10测试:Chrome,Firefox,IE11,Edge + Android:Chrome(6.0.1)

还有这个github项目https://github.com/ismailhabib/custom-protocol-detection,其中有一个类似的方法可能会稍微维护一下但是由于某些原因我无法让他们的解决方案工作,但也许这正是你需要的。

答案 1 :(得分:-1)

我认为这可能会帮助您here使用不同的浏览器,但请更好地定义您的问题,或者至少添加一些示例来说明问题。