如何以全屏模式启动Firefox?


24

我如何以全屏模式(通过按f11键激活的模式)启动firefox 4?

Answers:


25

在Linux上(可在debian jessie上使用):

firefox -url http://superuser.com &
xdotool search --sync --onlyvisible --class "Firefox" windowactivate key F11

firefox行-使用url启动firefox,并从终端(“&”)分离。“&”为必填项,否则在firefox退出时不会执行以下脚本。

xdotool行搜索窗口的部分名称为“ Firefox”(正在​​运行的应用程序窗口的部分名称可以由xwininfo确定),激活firefox窗口,将键F11发送给Firefox。

此代码比YumYumYum的解决方案要好一些(仅在真正启动Firefox时才发送密钥。睡眠不是真正可用的方法,因为在慢速/超载的计算机上或快速的计算机上可能会错过Firefox)

对不起,我迟到了答案(错过了6年)


在Ubuntu 16上像魅力一样工作
完成数据解决方案

如果您不想停止使用Firefox,则可以简单地反转这些命令的顺序,并且xdotool仍将忠实地等待Firefox出现,然后再按F11键。
Ekevoo

@Ekevoo您能举个例子吗?
eekfonky

@eekfonkyxdotool $PARAMS & firefox -url http://superuser.com
Ekevoo

6

通过运行以下命令创建新的配置文件

firefox -ProfileManager

使用新的配置文件运行Firefox,使用移至全屏F11,然后按alt+ 将其关闭f4

每次使用此配置文件时,它将以全屏模式打开。


如果您已经有运行中的Firefox实例,请不要忘记“ -no-remote”选项:“ firefox -ProfileManager -no-remote”
Wilbert

在完成配置文件并以全屏模式关闭Firefox之后,您可以使用“ firefox -P'会话名称'-no-remote”以全屏模式启动Firefox。
威伯特

1
不适用于我(2016年)
KarelBílek'16

1
在Arch Linux上的Firefox 55.0.2上不起作用
joelostblom

2
不适用于Firefox 56.0.2(2017年)
Yohanes AI

6

其他答案中提到了许多有用的插件,但在Firefox 57(Quantum)上却不起作用。如果遇到问题,请尝试使用ForceFull。对于奖励积分,默认情况下会在启动时立即全屏显示。无需配置即可获得该行为。


4

命令行

Firefox 命令行选项 -fullscreen不适用于我:

"firefox.exe" -url http://superuser.com -fullscreen

延期

但是,Kimmo Heinaaro使用R-kiosk 0.9.0扩展名是一种魅力。

Real Kiosk是Firefox扩展,默认为全屏显示,它禁用所有菜单,工具栏,键盘命令和右键菜单。Alt + Home仍然可以带您回家。


2
不再工作(2016年)
KarelBílek'16

@KarelBílek刚刚安装了它,就可以了!
Mike Szyndel

1

如果您使用的是firefox 3,则可以使用扩展名。它允许全屏启动。其他人也是如此,请参见此处

我不知道命令行开关。


1

全屏爸爸!

$ cat /var/tmp/firefoxfullscreen.sh 
#!/bin/bash
export DISPLAY=:0.0 # eye
cat > /var/tmp/index.html << \EOF
<html>
<head><meta http-equiv="refresh" content="3" />
<style>
html { 
  background: url("http://192.168.0.142:7007/video/vnc.jpeg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
</style>
</head>
<body>
</body>
</html>
EOF

ps aux | grep firefox | awk '{print $2}' | xargs kill -9; # kill me
firefox "/var/tmp/index.html" & # leave me alone
sleep 5 # hehehe
xdotool key F11 # hit full screen


0

在网上搜寻了几天后,我找到了“ 自动全屏”插件。

这只是一个简单的脚本,它可以完成所说的事情。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.