Youtube playback control

Control all youtube tabs from any tab any window.

Youtube playback controlคืออะไร?

Youtube playback control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ankit Shah และคุณลักษณะหลักของมันคือ "Control all youtube tabs from any tab any window."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube playback control

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

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

                        This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension.

Now also supports jumping to particular tab and closing the tab.

The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.                    

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

ชื่อ Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
คำอธิบาย Control all youtube tabs from any tab any window.
ขนาดไฟล์ 46.5 KB
จำนวนการติดตั้ง 582
เวอร์ชันปัจจุบัน 0.1.4
อัปเดตครั้งล่าสุด 2017-09-11
วันที่เผยแพร่ 2017-09-11
คะแนน 4.41/5 รวมทั้งหมด 27 คะแนน
ผู้พัฒนา Ankit Shah
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube playback control",
    "version": "0.1.4",
    "description": "Control all youtube tabs from any tab any window.",
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon.png",
            "38": "assets\/[email protected]"
        },
        "default_popup": "views\/popup\/index.html",
        "default_title": "Youtube Tabs"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}