Netflix Shortcuts

Custom shortcuts for Netflix

Netflix Shortcuts là gì?

Netflix Shortcuts là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Custom shortcuts for Netflix".

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

screenshot

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

Tải xuống các tệp mở rộng Netflix Shortcuts 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

                        This extension allows you to control Netflix using only your keyboard, no more mouse needed.

It currently supports:
- "Skip Intro" (hit the "s" key)
- "Next Episode" (hit the "n" key).

More coming soon...                    

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

Tên Netflix Shortcuts Netflix Shortcuts
ID pplbkfmlmhipnhgjbdmlpkicnbkalhdp
URL Chính Thức https://chromewebstore.google.com/detail/netflix-shortcuts/pplbkfmlmhipnhgjbdmlpkicnbkalhdp
Mô tả Custom shortcuts for Netflix
Kích Thước Tệp 6.79 KB
Số Lần Cài Đặt 246
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-10-06
Ngày Phát Hành 2018-10-06
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Unknown
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/foxou33/netflix-shortcuts
URL Trang Trợ Giúp https://github.com/foxou33/netflix-shortcuts/issues
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Shortcuts",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Custom shortcuts for Netflix",
    "icons": {
        "64": "img\/icon_grey.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.netflix.com\/watch\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "img\/icon_red.png"
    },
    "permissions": [
        "declarativeContent"
    ]
}