Live Present Slides

Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.

Was ist Live Present Slides?

Live Present Slides ist eine Chrome-Erweiterung, die von randylubin entwickelt wurde, und ihr Hauptmerkmal ist "Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.".

Erweiterungsscreenshots

screenshot

Live Present Slides-Erweiterungs-CRX-Datei herunterladen

Laden Sie Live Present Slides-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Live Present Slides Live Present Slides
ID fgnaekpcnnenhhdnkidokjmogogjbkkm
Offizielle URL https://chromewebstore.google.com/detail/live-present-slides/fgnaekpcnnenhhdnkidokjmogogjbkkm
Beschreibung Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.
Dateigröße 16.8 KB
Installationsanzahl 1,450
Aktuelle Version 1.01
Letztes Update 2023-12-12
Veröffentlichungsdatum 2019-12-24
Bewertung 4.50/5 Insgesamt 2 Bewertungen
Entwickler randylubin
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}