Tab Play

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

Was ist Tab Play?

Tab Play ist eine Chrome-Erweiterung, die von cyfdev entwickelt wurde, und ihr Hauptmerkmal ist "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Erweiterungsscreenshots

screenshot
screenshot

Tab Play-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Play-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
Offizielle URL https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Beschreibung Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Dateigröße 54.91 KB
Installationsanzahl 114
Aktuelle Version 2.0
Letztes Update 2016-09-04
Veröffentlichungsdatum 2016-09-04
Bewertung 5.00/5 Insgesamt 4 Bewertungen
Entwickler cyfdev
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}