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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Live Present Slides एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक 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
ईमेल [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"
    }
}