Shared Slides Clicker for Google Meet

Allows multiple users to control a Google Slides presentation from within Google Meet

什麼是Shared Slides Clicker for Google Meet?

Shared Slides Clicker for Google Meet是由https://fonner.gitlab.io/shared-slides-clicker開發的Chrome擴展程式,該擴展的主要功能是“Allows multiple users to control a Google Slides presentation from within Google Meet”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Shared Slides Clicker for Google Meet擴展crx文件

下載Shared Slides Clicker for Google Meet擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        With so many people working remotely, we are all doing a lot of meeting and presenting over Google Meet.  But what do you do when multiple people need to share control of the same presentation?  

Instead of just telling the presenter to go to the "next slide" over and over, use this extension to share control with other attendees easily and seamlessly.

Once the presenter who sharing their screen installs this extension, they can share control of their currently active Google Slides presentation with other users of this extension. Within Google Meet, other users can easily change slides and control videos.

Supports both the legacy and new, refreshed Meet web user interface.                    

擴展基本資訊

名稱 Shared Slides Clicker for Google Meet Shared Slides Clicker for Google Meet
ID hbfioanokcpbblpgfjggelapbcaeppop
官方網址 https://chromewebstore.google.com/detail/shared-slides-clicker-for/hbfioanokcpbblpgfjggelapbcaeppop
簡介 Allows multiple users to control a Google Slides presentation from within Google Meet
檔案大小 2.38 MB
安裝次數 1,464
目前版本 1.0.0
更新時間 2023-05-21
上架時間 2020-09-28
評分 5.00/5 共 3 次評分
開發者 https://fonner.gitlab.io/shared-slides-clicker
電子郵箱 [email protected]
付費類型 free
擴展官網 https://fonner.gitlab.io/shared-slides-clicker
說明頁面URL https://gitlab.com/fonner/shared-slides-clicker/-/issues
隱私政策頁面URL https://fonner.dev/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Shared Slides Clicker for Google Meet",
    "version": "1.0.0",
    "icons": {
        "16": "assets\/icons\/favicon-16.png",
        "32": "assets\/icons\/favicon-32.png",
        "48": "assets\/icons\/favicon-48.png",
        "128": "assets\/icons\/favicon-128.png"
    },
    "description": "Allows multiple users to control a Google Slides presentation from within Google Meet",
    "homepage_url": "https:\/\/jedfonner.gitlab.io\/shared-slides-clicker\/",
    "short_name": "Shared Slides Clicker",
    "permissions": [
        "activeTab",
        "notifications",
        "storage",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/docs.google.com\/presentation\/*",
        "https:\/\/meet.google.com\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "author": "jedfonner",
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon-16.png",
            "32": "assets\/icons\/favicon-32.png",
            "48": "assets\/icons\/favicon-48.png",
            "128": "assets\/icons\/favicon-128.png"
        },
        "default_title": "SSC"
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "js\/meetContentScript.bundle.js"
            ],
            "css": [
                "css\/meetContentScript.css"
            ]
        },
        {
            "matches": [
                "https:\/\/docs.google.com\/presentation\/*"
            ],
            "js": [
                "js\/presentationContentScript.bundle.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "js\/simulateKeyPress.bundle.js"
            ],
            "matches": [
                "https:\/\/docs.google.com\/*"
            ]
        }
    ],
    "oauth2": {
        "client_id": "374792933952-19he6pf49pjkpu67bv3169qeba1vu83j.apps.googleusercontent.com",
        "scopes": [
            "profile",
            "email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.email",
            "https:\/\/www.googleapis.com\/auth\/userinfo.profile"
        ]
    },
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5PbdRf1E0Mk1sYL00++tYhYViTDtFanmgpI9Ct8bID0qICJV\/fXs7HW5vIBcROFqHeSrjuCQ\/L341x4WE2RkkHM4kJnMBoYgCAbCBYhFuE5GOV\/0GsYASWgEarOw5uW21ykNW\/eNItuI0afs0xVsycnQimqzBo8PIK0a8M2aJRKFqY6MvxmCu1ZofkMcfH72OVve2YR1\/mkbLBnjTLUKk+fTfSFt6r6Q1L4c8CKErgFDHeUV+PwfCRR+IqbKYoMqlDHheY5LYBkolnFaSpFgFlXuJjlBoYGHKQo0sh8Bg8EPooO6R\/\/C0TsUQkahHipHSxZozjiCN+OSNyGfmub87QIDAQAB"
}