FullTube
This a extension to maximize the youtube player size.
¿Qué es FullTube?
FullTube es una extensión de Chrome desarrollada por https://bijinapps.blogspot.com, y su función principal es "This a extension to maximize the youtube player size.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión FullTube
Descarga archivos de extensión FullTube en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
This extension enlarge the YouTube player to entire page. No ads in videos. Lightest extension. Video in screenshot is just used as sample.
Información Básica de la Extensión
Nombre | FullTube |
ID | cdhpfhpiblfbollfifbiakhmhfkmmbei |
URL Oficial | https://chromewebstore.google.com/detail/fulltube/cdhpfhpiblfbollfifbiakhmhfkmmbei |
Descripción | This a extension to maximize the youtube player size. |
Tamaño del Archivo | 6.46 KB |
Cantidad de Instalaciones | 13 |
Versión Actual | 1.9 |
Última Actualización | 2019-04-18 |
Fecha de Publicación | 2019-04-18 |
Desarrollador | https://bijinapps.blogspot.com |
Tipo de Pago | free |
Sitio Web de la Extensión | http://www.bijinapps.blogspot.in |
Idiomas Soportados | 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" } ] } |