Greasy Fork 支持简体中文。

Ruanyifeng No Block AdBlock

防止阮一峰博客屏蔽AdBlock

安裝腳本?
作者推薦腳本

您可能也會喜歡 RemoveAds

安裝腳本
作者
Xzonn
今日安裝
0
安裝總數
49
評價
0 0 0
版本
0.1
建立日期
2022-07-01
更新日期
2022-07-01
尺寸
437 位元組
授權條款
WTFPL
腳本執行於

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

  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" }; }