有没有办法检测某个网址是否在Chrome中打开并重定向到另一个网页。我需要它来制作网站拦截器。
答案 0 :(得分:8)
是的,您现在可以with Chrome 17。
将后台页面和webRequest权限添加到manifest.json:
{
"background_page": "background.html",
"permissions": [
"webRequest", "webRequestBlocking",
"http://www.mozilla.org/*"
]
}
和background.html的重定向逻辑:
<html><body>
<script>
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
//console.log('before', details);
if (details.url == "http://www.mozilla.org/") {
return {redirectUrl: "https://www.google.com/chrome/"};
};
},
{
urls: ["http://www.mozilla.org/*"],
types: ["main_frame"]
},
["blocking"]
);
</script>
</body></html>