Youtube playback control

Control all youtube tabs from any tab any window.

Was ist Youtube playback control?

Youtube playback control ist eine Chrome-Erweiterung, die von Ankit Shah entwickelt wurde, und ihr Hauptmerkmal ist "Control all youtube tabs from any tab any window.".

Erweiterungsscreenshots

screenshot

Youtube playback control-Erweiterungs-CRX-Datei herunterladen

Laden Sie Youtube playback control-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

                        This is a chrome extension which will allow you to play, pause or jump to next youtube videos running across all tabs in all windows. Press the row containing title and it toggles the state of tab playing youtube video. You need to reload tabs once after installing the extension.

Now also supports jumping to particular tab and closing the tab.

The extension is open source so feel free to add any issues or pull requests on https://github.com/shahankit/youtube-playback-control.                    

Grundlegende Informationen zur Erweiterung

Name Youtube playback control Youtube playback control
ID okbcoijdeebocmahlanbfemnckjonfnh
Offizielle URL https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh
Beschreibung Control all youtube tabs from any tab any window.
Dateigröße 46.5 KB
Installationsanzahl 582
Aktuelle Version 0.1.4
Letztes Update 2017-09-11
Veröffentlichungsdatum 2017-09-11
Bewertung 4.41/5 Insgesamt 27 Bewertungen
Entwickler Ankit Shah
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube playback control",
    "version": "0.1.4",
    "description": "Control all youtube tabs from any tab any window.",
    "browser_action": {
        "default_icon": {
            "19": "assets\/icon.png",
            "38": "assets\/[email protected]"
        },
        "default_popup": "views\/popup\/index.html",
        "default_title": "Youtube Tabs"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}