Firefox从命令行创建的配置文件中忽略user.js

时间:2015-03-04 16:47:29

标签: firefox

我尝试从c#程序将自定义首选项加载到Firefox中。我正在运行

创建一个新的firefox配置文件
firefox.exe -CreateProfile profileName

然后我在创建的新配置文件夹中创建一个user.js文件并将以下选项写入其中

user_pref("network.proxy.http", "IP_HERE")
user_pref("network.proxy.http_port", 80);
user_pref("network.proxy.type", 1);

然后我用

启动
firefox.exe -P profileName

但是它似乎完全忽略了user.js文件。两个Firefox实例都是使用System.Diagnostics.Process.Start()

启动的

我在这里做错了什么?

0 个答案:

没有答案