Netflix Rewind 1 sec

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

Cos'è Netflix Rewind 1 sec?

Netflix Rewind 1 sec è un'estensione di Chrome sviluppata da Laurens, e la sua funzione principale è "Seek through video with an x amount of seconds (adjustable)".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Netflix Rewind 1 sec

Scarica i file di estensione Netflix Rewind 1 sec in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Netflix Rewind 1 sec Netflix Rewind 1 sec
ID inpbafoldolmpeiebppjbckdpnkkhlej
URL Ufficiale https://chromewebstore.google.com/detail/netflix-rewind-1-sec/inpbafoldolmpeiebppjbckdpnkkhlej
Descrizione Seek through video with an x amount of seconds (adjustable)
Dimensione del File 32.6 KB
Conteggio Installazioni 809
Versione Corrente 4.0.1
Ultimo Aggiornamento 2024-01-03
Data di Pubblicazione 2023-03-17
Valutazione 4.50/5 Totale 10 Valutazioni
Sviluppatore Laurens
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/laurens94/netflix-rewind-browser-extension
URL della Pagina di Aiuto https://github.com/laurens94/netflix-rewind-browser-extension/issues
Lingue Supportate 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"
        }
    }
}