Google Meet Portal

Allows to see the participants in a Google Meet call from other tabs.

Google Meet Portalคืออะไร?

Google Meet Portal เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ilyas และคุณลักษณะหลักของมันคือ "Allows to see the participants in a Google Meet call from other tabs."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Meet Portal

ดาวน์โหลดไฟล์ส่วนขยาย Google Meet Portal ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Nonverbal communication is really important during a video call, and you might miss it when you look at another tab during a call.
Google Meet Portal allows to see the participants in the video call in other tabs (Picture-in-Picture / PiP).
Useful when taking notes during the meeting, presenting your window/tab, quickly checking something...

The portal can be customized to avoid interfering with the content of the page:
- You can drag the portal to move it around the page.
- Use the menu buttons to adjust the dimensions of the video.
- Use the menu buttons to adjust the number of columns.

----
How to use:
- Click on the extension's icon to enable it (it should become colored).
- Start a video call on Google Meet.
- Open a new tab (it should be in the same window) and go to any website you want.
You should be able to see the portal by now 🎉

If you're facing any issues please restart your browser and try disabling and enabling the extension again. If the issue persists, I'll be more than happy to help you, just send me an email :)
----
If you have any questions, requests or just want to say "Hi", here is my email: ilyas[at]amezouar.com
------
Of course, instead of the cute 🐶 and 🐱 you'll see the video of the participants.
The photos have been taken by the talented: @yoadsh, @muzaluiza, @madhatterzone, @karsten116, @plhnk and @qrupt from Unsplash.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Google Meet Portal Google Meet Portal
ID hbakeckmffkedjgbnjkokpchaodhgdpc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/google-meet-portal/hbakeckmffkedjgbnjkokpchaodhgdpc
คำอธิบาย Allows to see the participants in a Google Meet call from other tabs.
ขนาดไฟล์ 24.67 KB
จำนวนการติดตั้ง 426
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2021-06-23
วันที่เผยแพร่ 2020-11-09
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา ilyas
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Portal",
    "version": "0.2.0",
    "description": "Allows to see the participants in a Google Meet call from other tabs.",
    "icons": {
        "128": "assets\/icons\/icon-inactive.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "server.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [
                "*:\/\/meet.google.com\/*"
            ],
            "js": [
                "client.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Click to enable Google Meet Portal"
    },
    "web_accessible_resources": [
        "widget.js",
        "assets\/*"
    ],
    "permissions": [
        "activeTab",
        "tabs",
        ""
    ]
}