Question
How to enable clipboard API in CEP extension?
I have a CEP extension for After Effects, and I try to write to the clipboard buffer using the native JavaScript clipboard API as follows:
await navigator.clipboard.writeText("test-clipboard-cep");Executing that line of code throws this error:
NotAllowedError: Write permission denied.How can I enable the usage of that API?
