According to MDN, navigator.clipboard is only available in a secure context:
All the methods require a secure context. Additional requirements for using the API are discussed in the Security consideration section of the API overview topic.
Running window.isSecureContext returns false. It's unclear to me if there's some way we could force it into being considered a secure context (perhaps by registering a custom protocol)?
According to MDN,
navigator.clipboardis only available in a secure context:Running
window.isSecureContextreturnsfalse. It's unclear to me if there's some way we could force it into being considered a secure context (perhaps by registering a custom protocol)?