Zoom Closer

This extension automatically closes the launched window from Zoom meetings.

Zoom Closer란 무엇입니까?

Zoom Closer은(는) touchy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension automatically closes the launched window from Zoom meetings."입니다.

확장 프로그램 스크린샷

screenshot

Zoom Closer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Automatically closes the Zoom Post Attendee window that is created when launching a Zoom meeting from zoom.us. Uses Chrome Context Script to send a message to a background page to close the tab. Requires no special permissions (except access to the page 'https://zoom.us/postattende' and 'https://zoom.us/j/*).

Source: https://github.com/seanstar12/zoom-close

1.7: Updated timeout to 6 seconds (https://github.com/seanstar12/zoom-close/pull/8)
1.6: Merged change from faorfwd to add zoom.us/s/* domain
1.5: Merged change from chriscannon to add zoom.us/j/* domain                    

확장 프로그램 기본 정보

이름 Zoom Closer Zoom Closer
ID appjbedfhcmpknanmbndpojcllfaemal
공식 URL https://chrome.google.com/webstore/detail/zoom-closer/appjbedfhcmpknanmbndpojcllfaemal
설명 This extension automatically closes the launched window from Zoom meetings.
파일 크기 129 KB
설치 횟수 108,819
현재 버전 1.7
최근 업데이트 2020-05-21
출시 날짜 2020-05-21
평점 3.63/5 총 109 개의 평점
개발자 touchy
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Zoom Closer",
    "description": "This extension automatically closes the launched window from Zoom meetings.",
    "version": "1.7",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/zoom.us\/postattendee",
                "https:\/\/zoom.us\/j\/*",
                "https:\/\/*.zoom.us\/j\/*",
                "https:\/\/zoom.us\/s\/*",
                "https:\/\/*.zoom.us\/s\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}