我有以下代码来检测浏览器标签中的网址。我想检测该URL的协议(是http还是https)。我怎样才能做到这一点?
chrome.tabs.query({currentWindow: true, active: true}, function(tabs){
console.log(tabs[0].url);// returning the current url of tab
});
答案 0 :(得分:0)
您可以简单地在":"
// protocol will be http or https
var protocol = tabs[0].url.split(":")[0];