Live Present Slides
Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.
Live Present Slidesとは何ですか?
Live Present Slidesはrandylubinによって開発されたChromeの拡張機能で、その主な機能は「Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.」です。
拡張機能のスクリーンショット
Live Present Slides拡張機能のCRXファイルをダウンロード
Live Present Slides拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This item automatically hides or removes elements from Google Slides presentations so that only the slide is visible. This is meant for cases when you want a slide to take up the whole screen but you want to be able to live edit it from another tab or computer. This is particularly great for games or workshops where you are updating data during the event. Just make your browser fullscreen and hit the extension's icon. If the page is still loading, you may need to hit it a second time. Inspired by Raph D'Amico's brilliant hack.
拡張機能の基本情報
名前 | Live Present Slides |
ID | fgnaekpcnnenhhdnkidokjmogogjbkkm |
公式URL | https://chromewebstore.google.com/detail/live-present-slides/fgnaekpcnnenhhdnkidokjmogogjbkkm |
説明 | Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go. |
ファイルサイズ | 16.8 KB |
インストール数 | 1,450 |
現在のバージョン | 1.01 |
最終更新日 | 2023-12-12 |
公開日 | 2019-12-24 |
評価 | 4.50/5 合計 2 レビュー |
開発者 | randylubin |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Live Present Slides", "description": "Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.", "version": "1.01", "manifest_version": 3, "permissions": [ "activeTab" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/presentation\/*" ], "js": [ "contentScript.js" ] } ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_title": "Live Present Slides" } } |