Silly Redirect for Zoom Meetings

A web extension that redirects meetings to the web client.

Silly Redirect for Zoom Meetingsคืออะไร?

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

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

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Silly Redirect for Zoom Meetings

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

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

                        Unofficial web extension for Zoom meetings.

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.

Silly Redirect for Zoom Meetings 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/Silly-Redirect-for-Zoom-Meetings

Zoom and the Zoom logo are trademarks of Zoom Video Communications, Inc., registered in the U.S. and other countries.                    

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

ชื่อ Silly Redirect for Zoom Meetings Silly Redirect for Zoom Meetings
ID dammgkhaofolinipgnjjiocadmmhidch
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/silly-redirect-for-zoom-m/dammgkhaofolinipgnjjiocadmmhidch
คำอธิบาย A web extension that redirects meetings to the web client.
ขนาดไฟล์ 106 KB
จำนวนการติดตั้ง 1,000
เวอร์ชันปัจจุบัน 4.0.0
อัปเดตครั้งล่าสุด 2023-11-10
วันที่เผยแพร่ 2023-09-04
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Edoardo Tosin
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://edoardotosin.com/Silly-Redirect-for-Zoom-Meetings/
URL หน้าช่วยเหลือ https://github.com/EdoardoTosin/Silly-Redirect-for-Zoom-Meetings/issues
ภาษาที่รองรับ id,de,en,fr,nl,no,vi,tr,ca,es,hr,it,hu,pl,pt-BR,pt-PT,ro,fi,sv,cs,el,ru,uk,iw,th,ar,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_name__",
    "short_name": "__MSG_short_name__",
    "version": "4.0.0",
    "author": "Edoardo Tosin",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/github.com\/EdoardoTosin\/Silly-Redirect-for-Zoom-Meetings",
    "default_locale": "en",
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png",
        "256": "icons\/256x256.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "content_scripts": [
        {
            "exclude_matches": [
                "*:\/\/*.zoom.us\/wc\/join\/*",
                "*:\/\/*.zoomgov.com\/wc\/join\/*",
                "file:\/\/*\/*"
            ],
            "matches": [
                "*:\/\/*.zoom.us\/*",
                "*:\/\/*.zoomgov.com\/*"
            ],
            "js": [
                "js\/toggle.js",
                "js\/background.js",
                "js\/getManifest.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "{d20bd4aa-d2b5-4834-85e4-f563b48bb560}",
            "strict_min_version": "79.0"
        }
    },
    "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": "__MSG_name__",
        "default_popup": "html\/popup.html"
    },
    "content_security_policy": {
        "extension_pages": "default-src 'self'"
    },
    "host_permissions": [
        "*:\/\/*.zoom.us\/*",
        "*:\/\/*.zoomgov.com\/*"
    ]
}