Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Learn More

Cant find text option under Firefox -> Preferences -> Applications

  • 4 одговорa
  • 2 имају овај проблем
  • 17 прегледа
  • Последњи одговор послао subashini.rajan

more options

Hi,

I've been trying to automatically save "text/csv" files to the download folder. I did not want to see the "Opening xxx.csv" prompt which had "Open With" and "Save to" options. I wanted to avoid this prompt and just save the files directly to download directory and not open them once download completed. I'm running selenium tests to download the files and i'd be more interested to know about any user_pref options i could use to achieve this.

I tried using user_pref("browser.helperApps.neverAsk.saveToDisk","text/csv,text") in the prefs.js file in the firefox profile directory, but the prompt still shows up. Appreciate some help!

Thanks, Subashini

Hi, I've been trying to automatically save "text/csv" files to the download folder. I did not want to see the "Opening xxx.csv" prompt which had "Open With" and "Save to" options. I wanted to avoid this prompt and just save the files directly to download directory and not open them once download completed. I'm running selenium tests to download the files and i'd be more interested to know about any user_pref options i could use to achieve this. I tried using user_pref("browser.helperApps.neverAsk.saveToDisk","text/csv,text") in the prefs.js file in the firefox profile directory, but the prompt still shows up. Appreciate some help! Thanks, Subashini

Изабрано решење

You can only set an automatic download action for a specific MIME type, so if this isn't working then you need to check how the servers sends the csv files and possibly configure the server correctly if you have access.

Прочитајте овај одговор са објашњењем 👍 1

Сви одговори (4)

more options

Maybe the following add-on can do what you need:

Export-to-csv

more options

@smo.. thanks for the response.. the Export-to-csv plugin says its for exporting HTML table data as CSV file. But i already have a link to the csv, i just want it downloaded to the the download directory when i click the link, I was able to do this in chrome, but not sure how to enable the user preferences to do this.

Thanks, Subashini

more options

Одабрано решење

You can only set an automatic download action for a specific MIME type, so if this isn't working then you need to check how the servers sends the csv files and possibly configure the server correctly if you have access.

more options

@cor-el Appreciate your help! I think this would solve the issue.The MIME type for the file was "application/octet-stream". I tried setting the MIME type to "text/csv" locally and was able to save the files without the prompt. Thanks Again! Subashini