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