YouQue
Queueing youtube videos
Cos'è YouQue?
YouQue è un'estensione di Chrome sviluppata da Pahvi67, e la sua funzione principale è "Queueing youtube videos".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouQue
Scarica i file di estensione YouQue 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
YouQue will allow you to queue YouTube videos. All you need to do is open YouTube in adjacent tabs and they will play in order from left to right. It will also automatically stop videos to further help manage the tabs. Currently this has no on/off button so you will have to disable it in extensions if you don't want to use it. In case you have any questions or encounter any bugs please let me know.
Informazioni di Base sull'Estensione
Nome | |
ID | jedkmelkipfnbcgbanaeogegckbfeejh |
URL Ufficiale | https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh |
Descrizione | Queueing youtube videos |
Dimensione del File | 38.07 KB |
Conteggio Installazioni | 29 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-10-20 |
Data di Pubblicazione | 2014-10-20 |
Valutazione | 2.00/5 Totale 2 Valutazioni |
Sviluppatore | Pahvi67 |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouQue", "description": "Queueing youtube videos", "version": "1.0", "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube.fi\/*", "tabs" ], "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*", "http:\/\/*.youtube.com\/*", "http:\/\/*.youtube.fi\/*", "https:\/\/*.youtube.fi\/*" ], "js": [ "jquery.js", "contentscript.js" ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube.fi\/*", "tabs" ], "run_at": "document_end" } ], "background": { "scripts": [ "jquery.js", "eventPage.js" ], "persistent": false } } |