I need to make a copy to ClipBoard in one of my M3 H5 Scripts (10.4), and I use the native way:
navigator.clipboard.writeText(text).then(() => {
But it is blocked, and the console logs this:
DOMException: The Clipboard API has been blocked because of a permissions policy applied to the current document. See https://goo.gl/EuHzyv for more details.
Does anyone know how to overcome this limitation ?
Regards PR