Page 1 of 1

Weird Question: Install Custom Download Manager Scriptable?

Posted: Tue Mar 18, 2014 2:55 am
by Michael Tunnell
Is it possible to run a script or something to automatically install a custom download manager?

I have a custom tool that I would like to add but it is not something that would make sense as an official entry so was wondering if it would be possible to write a script and then install it without having to manually create it each time I reinstall or setup another computer?

Yes, I realize this is a weird question...sorry if this is the wrong forum but this isn't really a help topic and is possible external development.

Re: Weird Question: Install Custom Download Manager Scriptab

Posted: Tue Mar 18, 2014 11:43 am
by therube
You could use a user.js file or any other method that would enter/change a pref in prefs.js.

> user_pref("flashgot.custom", "To FILE");
> user_pref("flashgot.custom.To_FILE.args", "[UFILE]");
> user_pref("flashgot.custom.To_FILE.exe", "C:\\BIN\\win32pad.exe");

Re: Weird Question: Install Custom Download Manager Scriptab

Posted: Fri Mar 21, 2014 2:22 pm
by Michael Tunnell
thank you for the information, therube.