Tab Play

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

Co to jest Tab Play?

Tab Play to rozszerzenie Chrome opracowane przez cyfdev, a jego główną funkcją jest „Pause/Play, scrub or mute videos playing on another tab or another window in current window!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Tab Play

Pobierz pliki rozszerzeń Tab Play w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
Oficjalny URL https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Opis Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Rozmiar pliku 54.91 KB
Liczba instalacji 114
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2016-09-04
Data Publikacji 2016-09-04
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper cyfdev
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}