Youtube playback control
Control all youtube tabs from any tab any window.
Cos'è Youtube playback control?
Youtube playback control è un'estensione di Chrome sviluppata da Ankit Shah, e la sua funzione principale è "Control all youtube tabs from any tab any window.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Youtube playback control
Scarica i file di estensione Youtube playback control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Youtube playback control |
ID | okbcoijdeebocmahlanbfemnckjonfnh |
URL Ufficiale | https://chrome.google.com/webstore/detail/youtube-playback-control/okbcoijdeebocmahlanbfemnckjonfnh |
Descrizione | Control all youtube tabs from any tab any window. |
Dimensione del File | 46.5 KB |
Conteggio Installazioni | 582 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2017-09-11 |
Data di Pubblicazione | 2017-09-11 |
Valutazione | 4.41/5 Totale 27 Valutazioni |
Sviluppatore | Ankit Shah |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } ] } |