0
の背景はJavaScriptを除き、ページ上のすべてのスクリプト私はこのようなJavaScriptを持っているいくつかのページがあります。無効にChromeの拡張機能
をいくつかのページ
<script>
document.location = "http://example.com"
</script>
manifest.js
"content_scripts": [{
"matches" : ["https://thepage.com/*"],
"js" : ["background.js"]
}
ページがhttp://example.comまたはdisaにリダイレクトされないようにする方法はありますかbackground.jsを使用してページ内のすべてのスクリプトを削除しますか?
if(redirectingThePage) {
// stop redirecting and load normally
}
javascriptの実行を無効にするためのchrome.contentSettings APIの例を参照してください。 – wOxxOm