We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

Hello! One of the main thing is not quite ok is permitting users to copy text from javascript Prompts.

more options

Can you please tell me why do Firefox permit users to copy text from js prompt? Regarding general permissions, this functionality "can be prevent", but why not in firefox? There is somebody that can post a prevent possibility to copy text from a javascript prompt, alert or confirm (native).

This could be very helpful.

Can you please tell me why do Firefox permit users to copy text from js prompt? Regarding general permissions, this functionality "can be prevent", but why not in firefox? There is somebody that can post a prevent possibility to copy text from a javascript prompt, alert or confirm (native). This could be very helpful.
附加的畫面擷圖

所有回覆 (1)

more options

You can copy text from pretty much any element of the Firefox UI, unless it's clickable (because that would break functionality). There's no reason why that shouldn't be the case, since the text is visible anyway.

If you really wanted to, you can prevent the ability to copy text (with the exception from the actual box you can type in on a prompt) by using the following code in a userChrome.css file:

.content-prompt description {
    user-select: none !important;
}

If you have not previously used a userChrome.css file before, check out the How to Create a userChrome.css File page by userChrome.org for more information.

Hope this helps.