如何在chrome扩展开发中检测URL协议是http还是https?

时间:2016-12-22 11:24:13

标签: google-chrome-extension

我有以下代码来检测浏览器标签中的网址。我想检测该URL的协议(是http还是https)。我怎样才能做到这一点?

chrome.tabs.query({currentWindow: true, active: true}, function(tabs){
    console.log(tabs[0].url);// returning the current url of tab     
});

1 个答案:

答案 0 :(得分:0)

您可以简单地在":"

上拆分网址
// protocol will be http or https
var protocol = tabs[0].url.split(":")[0];