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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}