Zoom Web Client Redirector

A web extension that redirects zoom meetings to the web client version.

Zoom Web Client Redirectorคืออะไร?

Zoom Web Client Redirector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Edoardo Tosin และคุณลักษณะหลักของมันคือ "A web extension that redirects zoom meetings to the web client version."

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Zoom Web Client Redirector

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

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

                        This project was intended to make it easier to redirect Zoom meetings links to the web client page.
This browser addon works by replacing a portion of the url with "/wc/join" so that it loads the meeting joining page. For example https://zoom.us/j/0123456789 would be converted to https://zoom.us/wc/join/0123456789.
The web client is preferable over the desktop app because of the restriction that web browsers places on web pages, protecting your computer against malicious attacks and unauthorized access of your machine.

Zoom Web Client Redirector does NOT collect any data of any kind.

This software is released under the terms of the GPL-3.0 License.

Source code: https://github.com/EdoardoTosin/Zoom-Web-Client-Redirector                    

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

ชื่อ Zoom Web Client Redirector Zoom Web Client Redirector
ID ommndciompclncigoffdnipifnfnaclj
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/zoom-web-client-redirecto/ommndciompclncigoffdnipifnfnaclj
คำอธิบาย A web extension that redirects zoom meetings to the web client version.
ขนาดไฟล์ 87.21 KB
จำนวนการติดตั้ง 141
เวอร์ชันปัจจุบัน 2.8.5
อัปเดตครั้งล่าสุด 2022-01-10
วันที่เผยแพร่ 2021-03-25
ผู้พัฒนา Edoardo Tosin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/EdoardoTosin/Zoom-Web-Client-Redirector
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoom Web Client Redirector",
    "short_name": "Zoom WC Red",
    "version": "2.8.5",
    "author": "Edoardo Tosin",
    "description": "A web extension that redirects zoom meetings to the web client version.",
    "homepage_url": "https:\/\/github.com\/EdoardoTosin\/Zoom-Web-Client-Redirector",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png",
        "256": "icons\/256x256.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "*:\/\/*.zoom.us\/*",
        "*:\/\/*.zoomgov.com\/*"
    ],
    "background": {
        "page": "html\/popup.html"
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "*:\/\/*.zoom.us\/wc\/join\/*",
                "*:\/\/*.zoomgov.com\/wc\/join\/*",
                "file:\/\/*\/*"
            ],
            "matches": [
                "*:\/\/*.zoom.us\/*",
                "*:\/\/*.zoomgov.com\/*"
            ],
            "js": [
                "js\/toggle.js",
                "js\/redirect.js",
                "js\/getManifest.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "browser_style": true,
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "64": "icons\/64x64.png",
            "128": "icons\/128x128.png",
            "256": "icons\/256x256.png"
        },
        "default_title": "Zoom Web Client Redirector",
        "default_popup": "html\/popup.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{d20bd4aa-d2b5-4834-85e4-f563b48bb560}",
            "strict_min_version": "79.0"
        }
    }
}