為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

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

了解更多

Is there a way to block all downloads in firefox?

more options

Hello support,

Simple question. Is there a way to block all downloads in firefox (quantum)? I want to restrict all downloads from firefox. i looked everywhere and i caouldn't find an answer.

Best regars, Filip

Hello support, Simple question. Is there a way to block all downloads in firefox (quantum)? I want to restrict all downloads from firefox. i looked everywhere and i caouldn't find an answer. Best regars, Filip

所有回覆 (4)

more options

Hi Filip, what do you consider to be a download? Would that be only files that trigger the Open/Save dialog, or go into the Temp or Download folder, or would it also include files that Firefox displays such as images and videos?

I don't know whether there are any add-ons that offer a feature to block these various types of content, but it's certainly possible. If you haven't already, you can search here: https://addons.mozilla.org/firefox/extensions/

more options

Hi, only files that trigger Open/Save dialog and go into the Download folder.

I used one add-on and it's incompatible with quantum version of firefox.

more options

Maybe lock the download folder to a specific folder and make sure that no write access is possible to this folder. This might have to include the temp folder that Firefox uses by default to store files temporarily or make sure to cleanup this folder regularly.

more options

Extensions can inspect the response headers that are associated with a server response.

https://developer.mozilla.org/Add-ons/WebExtensions/API/webRequest

So an extension can look at these two headers --

  • content-disposition: attachment indicates an intended download
  • content-type may be something Firefox cannot display, such as a Word document or .mov video file

-- and cancel a request based on what it sees. (This may or may not save on bandwidth because Firefox might keep receiving packets in the background while the analysis is done.)

So I think someone could create an extension to cancel requests when the server is sending something that isn't on a short list of allowed content types, or is a forced download. But has anyone done that or will anyone do that? Your guess is as good as mine.