Queue for Netflix

Add queue functionality to Netflix (UK)

Queue for Netflix란 무엇입니까?

Queue for Netflix은(는) hulmey101에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add queue functionality to Netflix (UK)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Queue for Netflix 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Queue for Netflix Queue for Netflix
ID epelcomdifbmlmgmaiadkgagjbobbnbl
공식 URL https://chrome.google.com/webstore/detail/queue-for-netflix/epelcomdifbmlmgmaiadkgagjbobbnbl
설명 Add queue functionality to Netflix (UK)
파일 크기 12.37 KB
설치 횟수 88
현재 버전 1.1
최근 업데이트 2013-01-22
출시 날짜 2013-01-22
평점 3.33/5 총 3 개의 평점
개발자 hulmey101
결제 유형 free
지원되는 언어 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
}