Netflix Navigator

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

Apa itu Netflix Navigator?

Netflix Navigator adalah ekstensi Chrome yang dikembangkan oleh dutiyesh, dan fitur utamanya adalah "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".

Screenshot Ekstensi

screenshot
screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Netflix Navigator

Unduh file ekstensi Netflix Navigator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
URL Resmi https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
Deskripsi Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Ukuran File 37.95 KB
Jumlah Instalasi 216
Versi Saat Ini 0.3.0
Terakhir Diperbarui 2022-12-04
Tanggal Publikasi 2020-11-08
Penilaian 5.00/5 Total 5 Penilaian
Pengembang dutiyesh
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://www.netflixnavigator.com/
URL Halaman Kebijakan Privasi https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Bahasa yang Didukung 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"
            ]
        }
    ]
}