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 là gì?

Live Present Slides là một tiện ích mở rộng Chrome được phát triển bởi randylubin, và tính năng chính của nó là "Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Live Present Slides

Tải xuống các tệp mở rộng Live Present Slides dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Live Present Slides Live Present Slides
ID fgnaekpcnnenhhdnkidokjmogogjbkkm
URL Chính Thức https://chromewebstore.google.com/detail/live-present-slides/fgnaekpcnnenhhdnkidokjmogogjbkkm
Mô tả Make Google Slides appear in 'Present' mode while still being editable. Just hit fullscreen and you're good to go.
Kích Thước Tệp 16.8 KB
Số Lần Cài Đặt 1,450
Phiên Bản Hiện Tại 1.01
Cập Nhật Lần Cuối 2023-12-12
Ngày Phát Hành 2019-12-24
Đánh Giá 4.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển randylubin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}