inject.preload.js failing to load a file in chrome from my dev environment

前端 未结 5 1711
说谎
说谎 2020-12-07 15:07

I use google chrome for my php/js development.

today I started to see a file that is failing to load.

file name is always different

Request          


        
相关标签:
5条回答
  • 2020-12-07 15:41

    the ticket is on review and they working on it. Now you can add the entire test site to your trusted sites

    0 讨论(0)
  • 2020-12-07 15:55

    If you have any adBlocker then remove or pause for that specific page adBlocker, it worked for me i had the same issue with JavaScript Application when fetching data from Firestore.

    0 讨论(0)
  • 2020-12-07 15:58

    I installed an older version of Chrome and I solved the problem. https://www.slimjet.com/chrome/google-chrome-old-version.php

    0 讨论(0)
  • 2020-12-07 16:00

    Looks like it is officially broken. The issue is ticketed at https://issues.adblockplus.org/ticket/6744

    I tried to debug and find the exact cause, but the issue seems to be elsewhere. The JS code debugged (inject.preload.js at line 373)

    document.documentElement.appendChild(script); // here, script.src is indeed a valid script
    document.documentElement.removeChild(script);
    URL.revokeObjectURL(url);
    

    The script's src attribute targets a valid blob JS which is alive when this line is called!

    0 讨论(0)
  • 2020-12-07 16:02

    In the comment https://issues.adblockplus.org/ticket/6744#comment:17 , you can find a link to build list https://downloads.adblockplus.org/devbuilds/adblockpluschrome/, install the development version "Adblock Plus for Google Chrome and Opera 3.1.0.2069" and the error won't display anymore

    updated

    On 2018.7.17 the new verison with bug fixed is released on chrome webstore. So this issue is automatically resolved.

    0 讨论(0)
提交回复
热议问题