插件介绍和用法,可以参考
http://docs.wex5.com/cordova-plugin-customurlscheme/

不过接收参数的代码,和3.7之前的版本有差异的,3.8之后版本案例已经修改了

   window.plugins.launchmyapp.getLastIntent(function(url) {
                alert('test'+url);
      if (intent.indexOf('mycoolapp://' > -1)) {
        console.log("received url: " + url);
      } else {
        return console.log("ignore intent: " + url);
      }
    }, function(error) {
            alert('test error');
      return console.log("no intent received");
    });

案例参考:/UI2/demo/plugin/customURL/demo.w

当浏览器打开APP的时候,APP会重启,APP打开某个页面执行到这段代码的时候,就可以获取到传参的url地址了!
alert(‘test’+url); 就会提示传递过来的参数