Netflix Navigator

Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.

Cos'è Netflix Navigator?

Netflix Navigator è un'estensione di Chrome sviluppata da dutiyesh, e la sua funzione principale è "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Netflix Navigator

Scarica i file di estensione Netflix Navigator 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

                        Netflix Navigator is a chrome extension for Netflix to make browsing experience easy with keyboard.

Features:

★ Navigate with Arrow keys
★ Get more information with Enter key
★ Autoplays Preview after 1 second
★ Search Netflix with S key                    

Informazioni di Base sull'Estensione

Nome Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
URL Ufficiale https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
Descrizione Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Dimensione del File 37.95 KB
Conteggio Installazioni 216
Versione Corrente 0.3.0
Ultimo Aggiornamento 2022-12-04
Data di Pubblicazione 2020-11-08
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore dutiyesh
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.netflixnavigator.com/
URL della Pagina della Politica sulla Privacy https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Netflix Navigator",
    "version": "0.3.0",
    "description": "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Netflix Navigator",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ],
            "css": [
                "contentScript.css"
            ]
        }
    ]
}