Has anyone been able to hook the clipboardchange event of the new Async Clipboard API? I am trying this:
navigator.clipboard.addEventListener('clipboardchange', function (e) {
console.log("navigator clipboardchange");
});
But it never fires.