Como posso desativar o pop-up da barra de status no firefox, particularmente para vídeos em tela cheia em HTML5?

1

É particularmente problemático quando se assiste a um streaming de vídeo em um player HTML5 no modo de tela cheia.

Atualmente, minha solução alternativa é cancelar o carregamento, e esperamos que o player seja redefinido e apenas carregue o vídeo a partir de então. Honestamente, quero poder desligar o texto diretamente.

    
por 0xFFF1 06.10.2015 / 16:19

2 respostas

1

Existem add-ons que podem fazer isso, como Status-4-Evar.

Nas opções do complemento, defina Show status in: para None para desativar mensagens na barra de status.

Vocêtambémpodefazerissomanualmentecomarquivosdeconfiguração.

Navegueatéapastadoseuperfil("%APPDATA%\Mozilla\" ) e, em seguida, vá até a pasta chrome , criando-a, se necessário. Na pasta chrome , crie um arquivo de texto simples chamado userChrome.css

Cole o seguinte no arquivo:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

.statuspanel-label {background:#FF9!important;color:black!important;font-family:"DejaVu Sans Mono"}

statuspanel {display:none!important}
statuspanel {max-width:90%!important}

statuspanel[type="overLink"] .statuspanel-label
statuspanel[type="status"] .statuspanel-label[value^="Looking"]
statuspanel[type="status"] .statuspanel-label[value^="Connect"]
statuspanel[type="status"] .statuspanel-label[value^="Waiting"]
statuspanel[type="status"] .statuspanel-label[value^="Transfer"]

Ref1 Ref2

    
por 06.10.2015 / 16:47
0

Em primeiro lugar, isso é chamado de barra de status.

Em segundo lugar, use este addon e desative a barra com isso.

    
por 06.10.2015 / 16:44