Ruanyifeng No Block AdBlock

防止阮一峰博客屏蔽AdBlock

Instali tiun ĉi skripton?
Author's suggested script

You may also like RemoveAds.

Instali tiun ĉi skripton
Aŭtoro
Xzonn
Ĉiutagaj instaloj
0
Tutaj instaloj
50
Ratings
0 0 0
Versio
0.1
Kreita
2022/07/01
Ĝisdatigita
2022/07/01
Size
437 bitokoj
Licenco
WTFPL
Aplikiĝas al

阮一峰博客检测广告的核心代码为:

  if (
    /*isAdblocker || */
    (img && window.getComputedStyle(img).display === 'none') ||
    (img && window.getComputedStyle(img.parentElement).display === 'none')
  )

注意到这段代码是通过setTimeout(checker, 1000);执行的,因此只需要把window.getComputedStyle这个函数修改掉就可以了。

核心代码:

window.getComputedStyle = function() { return { "display": "block" }; }