YouTube Background Launcher

Enables launching YouTube videos into the background, allowing you to close the tab and control the video from any other tab/window.

YouTube Background Launcherคืออะไร?

YouTube Background Launcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ilkotech LTD และคุณลักษณะหลักของมันคือ "Enables launching YouTube videos into the background, allowing you to close the tab and control the video from any other tab/window."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Background Launcher

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

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

                        There's no easy way to explain this, nor would you ever need this feature.
But we could be wrong.

If you've ever wanted to play YouTube videos in the background and control them on any tab or window then this is the extension for you.

The extension places a launch icon on all YouTube videos (Excludes Embedded videos)
Clicking the launch icon will continue the video in the background. You can't see the video, only hear it. This is ideal for Music and Rambling videos.

To control the video playing in the background click the launcher icon on the toolbar in the top right. You can play/pause the video there as well as skip back and forth through the video using the timeline at the bottom.

Want to continue watching the video on YouTube? Click the videos title on the launcher, it will open a new tab and resume the video where you left off.

If you need help, you can find us on Twitter
https://twitter.com/ilkotech                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ YouTube Background Launcher YouTube Background Launcher
ID hgngjedjjlakmafmcbmoigbefomclfio
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-background-launch/hgngjedjjlakmafmcbmoigbefomclfio
คำอธิบาย Enables launching YouTube videos into the background, allowing you to close the tab and control the video from any other tab/window.
ขนาดไฟล์ 1.07 MB
จำนวนการติดตั้ง 391
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2016-06-11
วันที่เผยแพร่ 2016-06-11
คะแนน 2.13/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Ilkotech LTD
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Background Launcher",
    "description": "Enables launching YouTube videos into the background, allowing you to close the tab and control the video from any other tab\/window.",
    "version": "1.1",
    "icons": {
        "1024": "icon_1024.png"
    },
    "browser_action": {
        "default_icon": "toolbar-icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "https:\/\/i.ytimg.com\/*",
        "https:\/\/*.ytimg.com\/*",
        "notifications"
    ],
    "content_security_policy": "script-src 'self' https:\/\/s.ytimg.com https:\/\/www.youtube.com; object-src 'self'",
    "content_scripts": [
        {
            "js": [
                "jquery-3.0.0.min.js",
                "contentscript.js"
            ],
            "matches": [
                "http:\/\/youtube.com\/*",
                "https:\/\/youtube.com\/*",
                "http:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}