YouTube Inline Fullscreen
Make the most out of your screen space with a single click!
¿Qué es YouTube Inline Fullscreen?
YouTube Inline Fullscreen es una extensión de Chrome desarrollada por doubleyoustew, y su función principal es "Make the most out of your screen space with a single click!".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Inline Fullscreen
Descarga archivos de extensión YouTube Inline Fullscreen 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 offers a windowed fullscreen mode for YouTube. You can toggle it using the extension icon, the dedicated button inside the YouTube player or by using the shortcut by pressing "w". You can now also scroll down to the comments and related videos. You can toggle the search bar by pressing "s" while you are in fullscreen mode. Make YouTube videos responsive. No more wasted space around the content you enjoy. *Note*: Reload YouTube after installing the extension to have the button appear in the player.
Información Básica de la Extensión
Nombre | YouTube Inline Fullscreen |
ID | mfpkbigjnlcgngkdbmnchfnenfmibkig |
URL Oficial | https://chromewebstore.google.com/detail/youtube-inline-fullscreen/mfpkbigjnlcgngkdbmnchfnenfmibkig |
Descripción | Make the most out of your screen space with a single click! |
Tamaño del Archivo | 21.52 KB |
Cantidad de Instalaciones | 2,219 |
Versión Actual | 1.2.7 |
Última Actualización | 2023-09-27 |
Fecha de Publicación | 2020-01-23 |
Calificación | 4.17/5 Total de 36 Calificaciones |
Desarrollador | doubleyoustew |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Inline Fullscreen", "version": "1.2.7", "description": "Make the most out of your screen space with a single click!", "icons": { "16": "icons\/fullscreen-16.png", "48": "icons\/fullscreen-48.png", "128": "icons\/fullscreen-128.png" }, "background": { "service_worker": "background.js" }, "permissions": [ "scripting" ], "host_permissions": [ "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "ytif_style.css" ], "js": [ "ytif_content_script.js" ] } ], "action": { "default_name": "Fullscreen!", "default_icon": "icons\/fullscreen-48.png" }, "manifest_version": 3 } |