YouQue
Queueing youtube videos
Co to jest YouQue?
YouQue to rozszerzenie Chrome opracowane przez Pahvi67, a jego główną funkcją jest „Queueing youtube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouQue
Pobierz pliki rozszerzeń YouQue w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | jedkmelkipfnbcgbanaeogegckbfeejh |
Oficjalny URL | https://chrome.google.com/webstore/detail/youque/jedkmelkipfnbcgbanaeogegckbfeejh |
Opis | Queueing youtube videos |
Rozmiar pliku | 38.07 KB |
Liczba instalacji | 29 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2014-10-20 |
Data Publikacji | 2014-10-20 |
Ocena | 2.00/5 Łącznie 2 Oceny |
Deweloper | Pahvi67 |
Typ Płatności | free |
Obsługiwane Języki | 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 } } |