FullTube
This a extension to maximize the youtube player size.
Co to jest FullTube?
FullTube to rozszerzenie Chrome opracowane przez https://bijinapps.blogspot.com, a jego główną funkcją jest „This a extension to maximize the youtube player size.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia FullTube
Pobierz pliki rozszerzeń FullTube 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
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Podstawowe informacje o rozszerzeniu
Nazwa | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
Oficjalny URL | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Opis | This a extension to maximize the youtube player size. |
Rozmiar pliku | 6.46 KB |
Liczba instalacji | 13 |
Aktualna Wersja | 1.9 |
Ostatnia Aktualizacja | 2019-04-18 |
Data Publikacji | 2019-04-18 |
Deweloper | https://bijinapps.blogspot.com |
Typ Płatności | free |
Strona Rozszerzenia | http://www.bijinapps.blogspot.in |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "FullTube", "version": "1.9", "description": "This a extension to maximize the youtube player size.", "icons": { "48": "icons\/youtube.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/watch?v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&t=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_t.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?time_continue=*&v=**" ], "exclude_matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_tc.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&list=*&t=*s&index=**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/www.youtube.com\/watch?v=*&**" ], "js": [ "fulltube_pt.js" ], "run_at": "document_start" } ] } |