Netflix Rewind 1 sec

Seek through video with an x amount of seconds (adjustable)

O que é Netflix Rewind 1 sec?

Netflix Rewind 1 sec é uma extensão do Chrome desenvolvida por Laurens, e sua principal característica é "Seek through video with an x amount of seconds (adjustable)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Netflix Rewind 1 sec

Baixe arquivos de extensão Netflix Rewind 1 sec 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

                        Allows you to ↺ rewind the videoplayer on netflix.com by 1 second (instead of the default 10 seconds) each time you press the [<] or [,] key.

The amount of seconds to seek can be adjusted via the 🛠️ Options page.                    

Informações Básicas da Extensão

Nome Netflix Rewind 1 sec Netflix Rewind 1 sec
ID inpbafoldolmpeiebppjbckdpnkkhlej
URL Oficial https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej
Descrição Seek through video with an x amount of seconds (adjustable)
Tamanho do Arquivo 32.6 KB
Contagem de Instalações 809
Versão Atual 4.0.1
Última Atualização 2024-01-03
Data de Publicação 2023-03-17
Classificação 4.50/5 Total de 10 Avaliações
Desenvolvedor Laurens
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/laurens94/netflix-rewind-browser-extension
URL da Página de Ajuda https://github.com/laurens94/netflix-rewind-browser-extension/issues
Idiomas Suportados en,nl,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "version": "4.0.1",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "48": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentscript.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "netflix-rewind-1-sec.js"
            ],
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{8e51a86a-e712-4386-a231-a9c3d06f3348}",
            "strict_min_version": "109.0"
        }
    }
}