我有一些页面有这样的javascript:
某页
<script>
document.location = "http://example.com"
</script>
manifest.js
"content_scripts": [{
"matches" : ["https://thepage.com/*"],
"js" : ["background.js"]
}
有没有办法阻止页面重定向到http://example.com或使用 background.js 来禁用页面中的所有脚本?
if(redirectingThePage) {
// stop redirecting and load normally
}