Netflix Navigator

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

Netflix Navigator là gì?

Netflix Navigator là một tiện ích mở rộng Chrome được phát triển bởi dutiyesh, và tính năng chính của nó là "Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netflix Navigator

Tải xuống các tệp mở rộng Netflix Navigator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netflix Navigator Netflix Navigator
ID kiikkoajobekfkpgaojoincnfombbaco
URL Chính Thức https://chromewebstore.google.com/detail/netflix-navigator/kiikkoajobekfkpgaojoincnfombbaco
Mô tả Browse unlimited Netflix TV Shows and Movies easily with your Keyboard Arrow Keys.
Kích Thước Tệp 37.95 KB
Số Lần Cài Đặt 216
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2022-12-04
Ngày Phát Hành 2020-11-08
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển dutiyesh
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.netflixnavigator.com/
URL Trang Chính Sách Bảo Mật https://github.com/dutiyesh/extensions/blob/master/doc/off-the-record-history/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}