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是由Tim Wickstrom開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載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 |
官方網址 | 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" } } } |