Ublock origin prevents my JS script to load

2.7k Views Asked by At

I am using FingerprintJS to generate an unique Id for my js client. I had no issue until today when I just noticed ublock (google chrome) is now blocking the script :

const fpPromise = import('https://openfpcdn.io/fingerprintjs/v3')
      .then(FingerprintJS => FingerprintJS.load())

    fpPromise
      .then(fp => fp.get())
      .then(result => {
        visitorId = result.visitorId
      })
    })

Uncaught (in promise) TypeError: Failed to fetch dynamically imported module: https://openfpcdn.io/fingerprintjs/v3

I have no problem with other browsers (Firefox, safari etc.).

Is there any workaround to allow me to get this script to work without being blocked by ublock or any other adblocker ?

1

There are 1 best solutions below

0
On

Evade ad blockers

Some ad blockers might detect and block this library because of the known CDN URL or the script name. To evade the specific detection, one needs to check the applied rules. Here are some generic options to circumvent this behavior.

Open-source alternatives

  • Use the NPM installation option for the open source FingerprintJS.
  • The less preferred way is to self-host the script on your own domain. It will make your script quickly outdated and it will stop working with new browsers as they get released in the future. Additionally, make sure the script's URL doesn't end with the /fingerprint.js, otherwise it will be blocked. You can find scripts on the following URLs (you can replace the version with the specific version e.g. with v3.3.3).
    • ES Module download URL: https://openfpcdn.io/fingerprintjs/v3/esm.min.js.
    • UMD download URL: https://openfpcdn.io/fingerprintjs/v3/umd.min.js.

Commercial alternatives

src: https://github.com/fingerprintjs/fingerprintjs/blob/e7dd670b8e6f9bcbdaee5231158f8c31d79e4b1e/docs/bypass_ad_blockers.md