Netflix Navigator

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

Qu'est-ce que Netflix Navigator ?

Netflix Navigator est une extension Chrome développée par dutiyesh, et sa fonction principale est "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Netflix Navigator

Téléchargez les fichiers d'extension Netflix Navigator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
URL Officiel https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
Description Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Taille du Fichier 37.95 KB
Nombre d'Installations 216
Version Actuelle 0.3.0
Dernière Mise à Jour 2022-12-04
Date de Publication 2020-11-08
Évaluation 5.00/5 Total 5 Évaluations
Développeur dutiyesh
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.netflixnavigator.com/
URL de la Page de Politique de Confidentialité https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Langues Prises en Charge 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"
            ]
        }
    ]
}