Netflix rewind x seconds

Netflix rewind or skip a parameter seconds

Cos'è Netflix rewind x seconds?

Netflix rewind x seconds è un'estensione di Chrome sviluppata da wahid-moh, e la sua funzione principale è "Netflix rewind or skip a parameter seconds".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Netflix rewind x seconds

Scarica i file di estensione Netflix rewind x seconds 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

                        Rewind / skip time on netflix movies, time can be paramtered.

Use key keyboard <  to rewind with x second
Use key keyboard >  to skip with x second
Use > or . to skip with 5 seconds (does get stuck sometimes)                    

Informazioni di Base sull'Estensione

Nome Netflix rewind x seconds Netflix rewind x seconds
ID jmklaacdggogjblaiofpikjjhblhicop
URL Ufficiale https://chromewebstore.google.com/detail/netflix-rewind-x-seconds/jmklaacdggogjblaiofpikjjhblhicop
Descrizione Netflix rewind or skip a parameter seconds
Dimensione del File 8.89 KB
Conteggio Installazioni 352
Versione Corrente 1.0
Ultimo Aggiornamento 2023-01-11
Data di Pubblicazione 2023-01-10
Valutazione 2.75/5 Totale 4 Valutazioni
Sviluppatore wahid-moh
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/wahid-moh/rewind-netflix
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix rewind x seconds",
    "description": "Netflix rewind or skip a parameter seconds",
    "version": "1.0",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "netflix-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "host_permissions": [
        ""
    ]
}