Tab Play

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

Qu'est-ce que Tab Play ?

Tab Play est une extension Chrome développée par cyfdev, et sa fonction principale est "Pause/Play, scrub or mute videos playing on another tab or another window in current window!".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Tab Play

Téléchargez les fichiers d'extension Tab Play au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Tab Play Tab Play
ID jjeagdfnfenacnncimelkhlnhkbiaoch
URL Officiel https://chrome.google.com/webstore/detail/tab-play/jjeagdfnfenacnncimelkhlnhkbiaoch
Description Pause/Play, scrub or mute videos playing on another tab or another window in current window!
Taille du Fichier 54.91 KB
Nombre d'Installations 114
Version Actuelle 2.0
Dernière Mise à Jour 2016-09-04
Date de Publication 2016-09-04
Évaluation 5.00/5 Total 4 Évaluations
Développeur cyfdev
Type de Paiement free
Langues Prises en Charge 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\/"
    ]
}