Queue for Netflix

Add queue functionality to Netflix (UK)

Queue for Netflix là gì?

Queue for Netflix là một tiện ích mở rộng Chrome được phát triển bởi hulmey101, và tính năng chính của nó là "Add queue functionality to Netflix (UK)".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Queue for Netflix 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 for UK is instant only and they haven't provided a queue.  Using this app allows you to keep track of what you want to watch.  The queue is local to Chrome and does not sync to your Netflix account.

This is currently an early version.  Development is ongoing and new features will be added.

Update 22/01/13 - Titles are now displayed in order added.

HOW TO USE
Click on the extension icon in the address bar to view your queue. 
Play icon will start the title playing.
Cross icon will remove the title from your queue.

To add a title to your queue:
Right click on a title's cover and select add to Netflix queue.

Please feed back feature requests and issues!                    

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

Tên Queue for Netflix Queue for Netflix
ID epelcomdifbmlmgmaiadkgagjbobbnbl
URL Chính Thức https://chrome.google.com/webstore/detail/queue-for-netflix/epelcomdifbmlmgmaiadkgagjbobbnbl
Mô tả Add queue functionality to Netflix (UK)
Kích Thước Tệp 12.37 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2013-01-22
Ngày Phát Hành 2013-01-22
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển hulmey101
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Queue for Netflix",
    "version": "1.1",
    "description": "Add queue functionality to Netflix (UK)",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Queue for Netflix",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/movies.netflix.com\/*"
            ],
            "js": [
                "queue_button.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "storage"
    ],
    "manifest_version": 2
}