BBC iPlayer Playlists

Allows adding videos from the BBC iPlayer website to a playlist

BBC iPlayer Playlistsคืออะไร?

BBC iPlayer Playlists เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Allows adding videos from the BBC iPlayer website to a playlist"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BBC iPlayer Playlists

ดาวน์โหลดไฟล์ส่วนขยาย BBC iPlayer Playlists ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
        }
    ]
}