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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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