Netflix Keyboard Shortcuts Plus

for 3 secs forward/backward

O que é Netflix Keyboard Shortcuts Plus?

Netflix Keyboard Shortcuts Plus é uma extensão do Chrome desenvolvida por center, e sua principal característica é "for 3 secs forward/backward".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix Keyboard Shortcuts Plus

Baixe arquivos de extensão Netflix Keyboard Shortcuts Plus 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

                        This extension will enable keyboard shortcuts that Netflix doesn't have.



      A or J:       3 secs backward
      S or K:       pause/play
      D or L:       3 secs forward

      1-9:          X secs backward
      Shift + 1-9:  X secs forward

      C:            Toggle subs (Native / Learning language)
      V:            Toggle audio (Native / Learning language)
      Shift + C:    Toggle subs visibility

      H:            Toggle subs clipboard copy by mouseover

      -:            decrease Playback Rate
      +:            increase Playback Rate 
      0:            Playback Rate to default


You can set the native language and learning language, and you can toggle audio/subtitles using shortcut keys.
Further more, there are many extremely useful shortcuts especially for language learners and heavy users.

All you need to do from now on is just install it and click the icon! (^o^)




English, Japanese, French, German, Spanish, Chinese... and so on.
(More than "18" languages!)                    

Informações Básicas da Extensão

Nome Netflix Keyboard Shortcuts Plus Netflix Keyboard Shortcuts Plus
ID lcijklobkiddjhhkfkdhlhaabiknoahg
URL Oficial https://chromewebstore.google.com/detail/netflix-keyboard-shortcut/lcijklobkiddjhhkfkdhlhaabiknoahg
Descrição for 3 secs forward/backward
Tamanho do Arquivo 62.42 KB
Contagem de Instalações 419
Versão Atual 2.0.0
Última Atualização 2024-01-01
Data de Publicação 2020-02-17
Classificação 4.57/5 Total de 7 Avaliações
Desenvolvedor center
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://twitter.com/ExisVR/
URL da Página de Ajuda https://twitter.com/ExisVR/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Keyboard Shortcuts Plus",
    "description": "for 3 secs forward\/backward",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "128": ".\/images\/icon-128x128.png"
    },
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "default_popup": ".\/options.html",
        "default_icons": {
            "128": ".\/images\/icon-128x128.png"
        }
    },
    "options_page": ".\/options.html",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.netflix.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "inject.css"
            ],
            "js": [
                "libs\/jq.js",
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*"
            ],
            "resources": [
                "libs\/jq.js",
                "libs\/myLib.js",
                "inject_content.js"
            ]
        }
    ]
}