Join the Mozilla’s Test Days event from 9–15 Jan to test the new Firefox address bar on Firefox Beta 135 and get a chance to win Mozilla swag vouchers! 🎁

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

자세히 살펴보기

Any possibility to read clipboard data using javascript in Firefox without user triggered ctrl+v event. Chrome prompts user for clipboard access permission.

more options

I am trying to read clipboard data using navigator.clipboard.readText() I get readText not a function whereas I can see that navigator.clipboard.writeText() is available. When I tried manually triggering ctrl+v I was able to access the data using event.clipboardData.getData().

I want a solution where the readText or getData should work without user intervention, provided the user is asked for permission before accessing clipboard, the way it happens in Chrome.

I am trying to read clipboard data using navigator.clipboard.readText() I get readText not a function whereas I can see that navigator.clipboard.writeText() is available. When I tried manually triggering ctrl+v I was able to access the data using event.clipboardData.getData(). I want a solution where the readText or getData should work without user intervention, provided the user is asked for permission before accessing clipboard, the way it happens in Chrome.

글쓴이 swatimhatre16 수정일시

모든 댓글 (4)

more options

Clipboard.readText() is only supported for browser extensions in Firefox, not websites.

Clipboard.read() may work for you in the future, but it currently doesn't appear to be fully supported in Firefox and would also require the user to set the dom.events.asyncClipboard.dataTransfer preference to true.

It's a fairly new experimental feature, so it's not fully implemented by all browsers. Not to mention that it's pretty insecure to allow a website to read the user's clipboard without the user's knowledge.

more options

Post the config changes I was able to see the read function, but did not work programatically. Do you know till when will the feature be available to use in future.

more options

Post the config changes I was able to see the read function, but did not work programatically. Do you know till when will the feature be available to use in future.

more options

The Clipboard API is still a fairly new working draft specification. It's going to change frequently and possibly dramatically (in fact, the current draft was changed May 5, 2020) before it becomes an endorsed recommendation by W3C.

Until it's a recommendation (which could take a long time), it's still a non-standard feature that may fully supported in some browsers, but have partial or no support in others.