Youtube playback control
Control all youtube tabs from any tab any window.
Qu'est-ce que Youtube playback control ?
Youtube playback control est une extension Chrome développée par Ankit Shah, et sa fonction principale est "Control all youtube tabs from any tab any window.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Youtube playback control
Téléchargez les fichiers d'extension Youtube playback control 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
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.
Informations de Base sur l'Extension
Nom | Youtube playback control |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
URL Officiel | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
Description | Control all youtube tabs from any tab any window. |
Taille du Fichier | 46.5 KB |
Nombre d'Installations | 582 |
Version Actuelle | 0.1.4 |
Dernière Mise à Jour | 2017-09-11 |
Date de Publication | 2017-09-11 |
Évaluation | 4.41/5 Total 27 Évaluations |
Développeur | Ankit Shah |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |