Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't detect adblock with tampermonkey #22

Open
BennyThink opened this issue Feb 5, 2023 · 0 comments
Open

can't detect adblock with tampermonkey #22

BennyThink opened this issue Feb 5, 2023 · 0 comments

Comments

@BennyThink
Copy link

Describe the bug
If the user is using tamper monkey to block ad, it can't be detected by this package

To Reproduce

  1. install tamper monkey and find userscript, one sample tamper monkey code, also see this one
// ==UserScript==
// @name         test adsense
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        http://localhost:3000/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

window.addEventListener('load', function () {
   document.querySelectorAll('.adsbygoogle').forEach(a => a.remove())
})

})();
  1. refresh the page, ads are gone but no prompt.

Expected behavior
It should be detected.

Screenshots
If applicable, add screenshots to help explain your problem.

Please complete the following information:

  • OS: [macOS Ventura 13.1 (22C65)]
  • Browser [Chrome]
  • Browser Version [109.0.5414.119]
  • Package Version [latest, 1.1.0]

Additional context
possible to add some patch in useEffect code to detect

    setTimeout(() => {
      const nodes=document.querySelectorAll(".adsbygoogle");
      if(nodes.length === 0) {
        setAdBlockDetected(true);
      }
    }, 3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant