Netflix Toggle English Subtitles
Press V key to toggle English subtitles on Netflix
O que é Netflix Toggle English Subtitles?
Netflix Toggle English Subtitles é uma extensão do Chrome desenvolvida por Anton, e sua principal característica é "Press V key to toggle English subtitles on Netflix".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Netflix Toggle English Subtitles
Baixe arquivos de extensão Netflix Toggle English Subtitles no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Press V key to toggle English subtitles on Netflix Press V on your keyboard to toggle English subtitles while watching video. I was struggling to turn on and off subtitles, so decided to build this small extension to provide extra shortcut. Please give it a feedback. What shortcut do you want to add to Netflix?
Informações Básicas da Extensão
Nome | Netflix Toggle English Subtitles |
ID | dgfigfcmgjgaioloiogajolohifeimhi |
URL Oficial | https://chromewebstore.google.com/detail/netflix-toggle-english-su/dgfigfcmgjgaioloiogajolohifeimhi |
Descrição | Press V key to toggle English subtitles on Netflix |
Tamanho do Arquivo | 8.29 KB |
Contagem de Instalações | 790 |
Versão Atual | 1.0.0 |
Última Atualização | 2019-07-20 |
Data de Publicação | 2019-07-20 |
Classificação | 3.23/5 Total de 22 Avaliações |
Desenvolvedor | Anton |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "name": "Netflix Toggle English Subtitles", "version": "1.0.0", "manifest_version": 2, "description": "Press V key to toggle English subtitles on Netflix", "permissions": [ "https:\/\/www.netflix.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "js": [ "js\/utils.js", "js\/index.js" ], "all_frames": true, "run_at": "document_start" } ], "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "minimum_chrome_version": "31", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx" } |