Tab Play

Pause/Play, scrub or mute videos playing on another tab or another window in current window!

Tab Playคืออะไร?

Tab Play เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cyfdev และคุณลักษณะหลักของมันคือ "Pause/Play, scrub or mute videos playing on another tab or another window in current window!"

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tab Play

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

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

                        Video player controller for those that work on multiple tabs in multiple windows

Have music playing in the background and want to pause it briefly without digging through all your tabs? 

Pause/Resume and skip forward and back with Video Tab Controller.
Have controll over what is playing on your browser, in your background, without having to dig for that one tab                    

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

ชื่อ Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
คำอธิบาย Pause/Play, scrub or mute videos playing on another tab or another window in current window!
ขนาดไฟล์ 54.91 KB
จำนวนการติดตั้ง 114
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2016-09-04
วันที่เผยแพร่ 2016-09-04
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา cyfdev
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tab Play",
    "description": "Pause\/Play, scrub or mute videos playing on another tab or another window in current window!",
    "version": "2.0",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Tab Control"
    },
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "tabs",
        "webNavigation",
        "storage",
        "https:\/\/ajax.googleapis.com\/"
    ]
}