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 ?