Error in console while page is whitelisted

Everything about using Adblock Plus on Google Chrome
Post Reply
Dirky
Posts: 2
Joined: Sun Jun 24, 2018 6:33 pm

Error in console while page is whitelisted

Post by Dirky »

Hey Guys,

Since a short time i have problems on my website. I whitelist the domain to check if google adsense works but nothing happens. in The console i found some errors

Code: Select all

GET blob:https://xxxxxxxxxxxxxxxxx/0ddabf19-c7cd-41e4-a5bc-7e437afeb40c 0 () inject.preload.js:373



Codeblock

Code: Select all

if (document instanceof HTMLDocument)
{
  let sandbox = window.frameElement &&
                window.frameElement.getAttribute("sandbox");

  if (typeof sandbox != "string" || /(^|\s)allow-scripts(\s|$)/i.test(sandbox))
  {
    let script = document.createElement("script");
    script.type = "application/javascript";
    script.async = false;
    // Firefox 58 only bypasses site CSPs when assigning to 'src'.
    let url = URL.createObjectURL(new Blob([
      "(" + injected + ")('" + randomEventName + "');"
    ]));
    script.src = url;
    document.documentElement.appendChild(script);
    document.documentElement.removeChild(script);
    URL.revokeObjectURL(url);
  }
}
Affected row

Code: Select all

  document.documentElement.appendChild(script);
When i remove ADP totaly from chrome everything works but thats no workarround for me


Chrome: Version 67.0.3396.87 (Offizieller Build) (64-Bit)
ABP: Version 3.1 (fresh installed)


Br
User avatar
mapx
Posts: 21940
Joined: Thu Jan 06, 2011 2:01 pm

Re: Error in console while page is whitelisted

Post by mapx »

Could you test the last dev build ? (disable the stable one)
https://chrome.google.com/webstore/deta ... ifjjdoepkn
Dirky
Posts: 2
Joined: Sun Jun 24, 2018 6:33 pm

Re: Error in console while page is whitelisted

Post by Dirky »

Looks better, no errors in console, but i also see no ads on my page.

Br
User avatar
mapx
Posts: 21940
Joined: Thu Jan 06, 2011 2:01 pm

Re: Error in console while page is whitelisted

Post by mapx »

- provide site / page address to test it on my own
- you could also upload an image with your page with ads (use imgur.com for uploading, post here the link)
Post Reply