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.
O que é Chrome Presentation Mode?
Chrome Presentation Mode é uma extensão do Chrome desenvolvida por Tim Wickstrom, e sua principal característica é "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 Tela da Extensão
Baixar o arquivo CRX da Extensão Chrome Presentation Mode
Baixe arquivos de extensão Chrome Presentation Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Chrome Presentation Mode |
ID | bgcfdodiekfhjfdcamaelkanbbifepib |
URL Oficial | https://chromewebstore.google.com/detail/chrome-presentation-mode/bgcfdodiekfhjfdcamaelkanbbifepib |
Descrição | Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar. |
Tamanho do Arquivo | 13.03 KB |
Contagem de Instalações | 5,111 |
Versão Atual | 1.0.2 |
Última Atualização | 2018-10-26 |
Data de Publicação | 2018-10-26 |
Classificação | 4.43/5 Total de 7 Avaliações |
Desenvolvedor | Tim Wickstrom |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } } |