Netflix Navigator

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

Netflix Navigatorคืออะไร?

Netflix Navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dutiyesh และคุณลักษณะหลักของมันคือ "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Navigator

ดาวน์โหลดไฟล์ส่วนขยาย Netflix Navigator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
คำอธิบาย Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
ขนาดไฟล์ 37.95 KB
จำนวนการติดตั้ง 216
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2022-12-04
วันที่เผยแพร่ 2020-11-08
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา dutiyesh
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.netflixnavigator.com/
URL หน้านโยบายความเป็นส่วนตัว https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
ภาษาที่รองรับ 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"
            ]
        }
    ]
}