Ce site disposera de fonctionnalités limitées pendant que nous effectuons des opérations de maintenance en vue de vous proposer un meilleur service. Si un article ne règle pas votre problème et que vous souhaitez poser une question, notre communauté d’assistance est prête à vous répondre via @FirefoxSupport sur Twitter, et /r/firefox sur Reddit.

Rechercher dans l’assistance

Évitez les escroqueries à l’assistance. Nous ne vous demanderons jamais d’appeler ou d’envoyer un SMS à un numéro de téléphone ou de partager des informations personnelles. Veuillez signaler toute activité suspecte en utilisant l’option « Signaler un abus ».

En savoir plus

How to set command line arguments for helper applications

  • 2 réponses
  • 22 ont ce problème
  • 23 vues
  • Dernière réponse par Darr247

more options

I am running firefox 3 and would like firefox to include some command line arguments when it runs a helper application for a specific mime type. I can pick the application, but I can't find anywhere to edit the command line to add the arguments. I can't even find documentation of what arguments are passed to the helper application. Is there anywhere where the configuration of and interface with helper applications is described in detail?

User Agent

Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3

I am running firefox 3 and would like firefox to include some command line arguments when it runs a helper application for a specific mime type. I can pick the application, but I can't find anywhere to edit the command line to add the arguments. I can't even find documentation of what arguments are passed to the helper application. Is there anywhere where the configuration of and interface with helper applications is described in detail? == User Agent == Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3

Toutes les réponses (2)

more options

Put the command into a file with execute permissions, including whatever command-line arguments you want. For instance, the file might contain the following:

 #! /bin/bash
 xpdf -g 1200x900 -z width -cont "$1"


In Firefox preferences, under "Applications," locate the appropriate Content Type and in the Action menu, select "Use other..." and then locate the executable file you just created and select it.

In UNIX-type operating systems at least, available options to the command can be found using the "man" command (e.g. "man xpdf" for the example above).

Modifié le par gtmarks

more options

How about for windows?

e.g. for PNG files I want to add the Helper App command line:

"rundll32.exe c:\windows\system32\shimgvw.dll,ImageView_Fullscreen "%1""

(which is the Microsoft RAW Image Viewer, same as its current windows File Association). Because the only options I'm offered on this machine now when I click on a PNG file link are to Save it, download it with the FlashGot plugin, or Open with the Browse button. On other windows machines here, Microsoft RAW Image Viewer is the default Open with choice.

Thanks.