如何在 VB 代码中更改 Firefox 主页
如何在 VB2011 代码中更改 Firefox 主页
我想通过运行该 EXE 文件来更改 Firefox 浏览器的 url 主页,
这可能吗
How Do I Change Firefox Homepage In VB2011 Code
I want to change the url homepage of the firefox browser by running that EXE file
is this possible
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想通过用户计算机上运行的程序更改 Firefox 的主页,则必须编辑
prefs.js
文件并创建一个新行,例如user_pref("browser.startup.homepage", "http://www.example.com/");
。请注意,如果有多个
browser.startup.homepage
条目,则浏览器启动时每个条目都会在新选项卡中打开,并且必须在关闭 Firefox 时进行修改,否则更改将迷路了。If you want to change the Firefox's home page form a program running on the user's computer, you have to edit the
prefs.js
file and create a new line likeuser_pref("browser.startup.homepage", "http://www.example.com/");
.Beware that if there are multiple
browser.startup.homepage
entries every entry will be opened in a new tab when the browser starts up, and that the modification must be done when Firefox is closed, otherwise the changes will be lost.