Chrome Presentation Mode
Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar.
¿Qué es Chrome Presentation Mode?
Chrome Presentation Mode es una extensión de Chrome desarrollada por Tim Wickstrom, y su función principal es "Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chrome Presentation Mode
Descarga archivos de extensión Chrome Presentation Mode 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
Chrome presentation mode is back. Simply install this plugin to have quick access to a fullscreen window that removes all browser elements including the address bar and all tabs.
Información Básica de la Extensión
Nombre | Chrome Presentation Mode |
ID | bgcfdodiekfhjfdcamaelkanbbifepib |
URL Oficial | https://chromewebstore.google.com/detail/chrome-presentation-mode/bgcfdodiekfhjfdcamaelkanbbifepib |
Descripción | Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar. |
Tamaño del Archivo | 13.03 KB |
Cantidad de Instalaciones | 5,111 |
Versión Actual | 1.0.2 |
Última Actualización | 2018-10-26 |
Fecha de Publicación | 2018-10-26 |
Calificación | 4.43/5 Total de 7 Calificaciones |
Desarrollador | Tim Wickstrom |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Presentation Mode", "version": "1.0.2", "description": "Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar.", "manifest_version": 2, "author": "Tim Wickstrom", "options_page": "credits.html", "icons": { "16": "images\/fullscreen16.png", "32": "images\/fullscreen32.png", "48": "images\/fullscreen48.png", "64": "images\/fullscreen64.png", "128": "images\/fullscreen128.png" }, "permissions": [ "activeTab" ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "Enter Presentation Mode", "default_icon": { "16": "images\/fullscreen16.png", "32": "images\/fullscreen32.png", "48": "images\/fullscreen48.png", "64": "images\/fullscreen64.png", "128": "images\/fullscreen128.png" } } } |