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.
Что такое Chrome Presentation Mode?
Chrome Presentation Mode - это расширение Chrome, разработанное Tim Wickstrom, и его основная функция - "Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar.".
Снимки экрана расширения
Скачать файл CRX расширения Chrome Presentation Mode
Скачайте файлы расширений Chrome Presentation Mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Chrome Presentation Mode |
ID | bgcfdodiekfhjfdcamaelkanbbifepib |
Официальный URL | https://chromewebstore.google.com/detail/chrome-presentation-mode/bgcfdodiekfhjfdcamaelkanbbifepib |
Описание | Simple plugin to add presentation mode to chrome. This will force chrome into full screen mode and hide tabs and the address bar. |
Размер файла | 13.03 KB |
Количество установок | 5,111 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2018-10-26 |
Дата публикации | 2018-10-26 |
Рейтинг | 4.43/5 Всего 7 оценок |
Разработчик | Tim Wickstrom |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" } } } |