**Description of the issue: **
An anti-adblock overlay (displayed as “広告ブロッカーを検出しました”) appears immediately upon loading the page, rendering the site unusable.
**Exact URL of the website in question: **
Screenshot of the ad as it appears in Brave:
**Did the issue present with default Shields settings? **
Yes
Does the site function as expected when Shields are turned off?
Yes
**Does the ad appear when using a Private window as well? **
Yes
What OS are you using when you see the ad?
Windows/Android
Brave version (check About Brave):
Brave 1.85.111 (Official Build) (64-bit)
The site utilizes a simple inline script located at the bottom of the for adblock detection. It attempts to load an external ad tag (bnctag.js) and triggers the overlay if the request fails.
Relevant Code:
async function runAdCheck() {
const adBance = document.createElement('script');
adBance.src = 'https://js.ssp.bance.jp/bnctag.js';
adBance.onerror = async () => {
checkScriptOnError();
};
adBance.onload = () => {
checkScriptOnLoad();
};
document.head.appendChild(adBance);
}
runAdCheck();
