BBC iPlayer Playlists

Allows adding videos from the BBC iPlayer website to a playlist

BBC iPlayer Playlists란 무엇입니까?

BBC iPlayer Playlists은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows adding videos from the BBC iPlayer website to a playlist"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

BBC iPlayer Playlists 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension was born out of the need to watch BBC iPlayer shows in sequence, rather than having to manually change which show to watch next. 

At the moment it's pretty basic: you can visit any show on the BBC iPlayer website and add it to a playlist; you can have multiple playlists, though only one playlist can be played at a time; adding and deleting of items in a playlist; and forwards and backwards  control buttons.

Future additions may include: universal playlist functionality, which would include being able to add media from YouTube, ITV, Channel 4, etc; placing of the "Add to Playlist" button in other pages of the BBC iPlayer website; restyling of the theme (it's pretty basic right now); more controls buttons; and more.                    

확장 프로그램 기본 정보

이름 BBC iPlayer Playlists BBC iPlayer Playlists
ID pbfcbgceiloelbgjlplcgodohedpcnjo
공식 URL https://chromewebstore.google.com/detail/bbc-iplayer-playlists/pbfcbgceiloelbgjlplcgodohedpcnjo
설명 Allows adding videos from the BBC iPlayer website to a playlist
파일 크기 339 KB
설치 횟수 431
현재 버전 1.0.0.2
최근 업데이트 2016-02-07
출시 날짜 2016-02-04
평점 2.50/5 총 2 개의 평점
개발자 Unknown
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BBC iPlayer Playlists",
    "description": "Allows adding videos from the BBC iPlayer website to a playlist",
    "version": "1.0.0.2",
    "icons": {
        "48": "assets\/logo\/logo.png"
    },
    "permissions": [
        "tabs",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": "assets\/logo\/logo.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "src\/shared\/playlist.js",
            "lib\/jquery.min.js",
            "src\/background\/background.js"
        ]
    },
    "web_accessible_resources": [
        "src\/content\/handler-hack.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.bbc.co.uk\/iplayer\/*"
            ],
            "js": [
                "lib\/jquery.min.js",
                "lib\/arrive.min.js",
                "lib\/jquery-ui\/jquery-ui.min.js",
                "src\/shared\/playlist.js",
                "src\/content\/playlist-controls.js"
            ],
            "css": [
                "lib\/jquery-ui-themes\/themes\/smoothness\/jquery-ui.css"
            ],
            "run_at": "document_end"
        }
    ]
}