好吧,我目前正在开发Google Chrome扩展程序,我需要获取所有DNS和404错误才能进行重定向。问题很简单,我真的不知道它是如何可能的......
如果是域错误,我想获取域名,而对于404错误,我想获取名称页面。
示例:
错误的域名:http://www.justforthetest.com/ =>取得刚好的考验
404错误:http://www.valeriemates.com/professinal.html =>取得专业
希望有人能给我一些帮助...... 提前谢谢!
答案 0 :(得分:3)
嗯,我能做的最多就是向这个URL发送一个新的XHR请求并检查返回的状态。对于错误的域状态,似乎是0
,对于404页面,它是404
。
<强> background.html 强>
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab) {
if(changeInfo.status == "loading") {
var xhr = new XMLHttpRequest();
xhr.open("GET", tab.url, true);
xhr.onreadystatechange = function() {
if (xhr.readyState == 4) {
if(xhr.status == 0) {
console.log("wrong domain:", tab.url);
} else if(xhr.status == 404) {
console.log("404 page:", tab.url);
} else if(xhr.status == 200) {
console.log("regular page:", tab.url);
}
}
}
xhr.send();
}
});