禁用页面上的所有脚本,但chrome扩展程序

时间:2017-10-16 14:52:58

标签: javascript html google-chrome-extension

我有一些页面有这样的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
}

1 个答案:

答案 0 :(得分:0)

也许是window.stop()。它会停止窗口加载  details on MDN web docs