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 ?
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
/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. withv3.3.3
).https://openfpcdn.io/fingerprintjs/v3/esm.min.js
.https://openfpcdn.io/fingerprintjs/v3/umd.min.js
.Commercial alternatives
src: https://github.com/fingerprintjs/fingerprintjs/blob/e7dd670b8e6f9bcbdaee5231158f8c31d79e4b1e/docs/bypass_ad_blockers.md