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.”。

擴展截圖

screenshot

下載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 Live Present Slides
ID fgnaekpcnnenhhdnkidokjmogogjbkkm
官方網址 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
電子郵箱 [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"
    }
}