Zoomcoder Extension

Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup

Zoomcoder Extension란 무엇입니까?

Zoomcoder Extension은(는) https://www.zoomcorder.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup"입니다.

확장 프로그램 스크린샷

screenshot

Zoomcoder Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This simple extension will add a convenient RECORD button on any Google calendar entry which contains a video meeting URL such as Zoom, WebEx, GotoMeeting, Microsoft Teams, Google Meet, etc. Once clicked the meeting details will be sent to Zoomcorder making it one click easy to schedule the Zoomcorder bot to attend, record and send you a copy of the meeting. 

This extension is free but Zoomcorder may require a paid subscription to record meetings.                    

확장 프로그램 기본 정보

이름 Zoomcoder Extension Zoomcoder Extension
ID ebhomdageggjbmomenipfbhcjamfkmbl
공식 URL https://chromewebstore.google.com/detail/zoomcoder-extension/ebhomdageggjbmomenipfbhcjamfkmbl
설명 Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup
파일 크기 90.29 KB
설치 횟수 90
현재 버전 1.2.2
최근 업데이트 2023-04-17
출시 날짜 2023-02-08
평점 5.00/5 총 2 개의 평점
개발자 https://www.zoomcorder.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://zoomcorder.com/
도움말 페이지 URL https://zoomcorder.com/support
개인정보 보호 정책 페이지 URL https://zoomcorder.com/extension/privacy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Zoomcoder Extension",
    "description": "Record your online meetings with Zoomcoder! This will add a button on Google Calendar popup",
    "version": "1.2.2",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/calendar.google.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "js\/moment.js",
                "js\/moment.tz.js",
                "calendar.google.com\/js\/content.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.zoom.us\/webinar\/*",
                "*:\/\/*.zoom.us\/meeting\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "zoom.us\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.teams.microsoft.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "teams.microsoft.com\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.meet.google.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "meet.google.com\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.webex.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "webex.com\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/meet.goto.com\/*",
                "*:\/\/gotowebinar.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "meet.goto.com\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.linkedin.com\/*"
            ],
            "js": [
                "js\/webinartv.js",
                "linkedin.com\/js\/foreground.js"
            ],
            "css": [
                "css\/webinartv.css"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/service_worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "*:\/\/*.google.com\/*",
                "*:\/\/*.linkedin.com\/*",
                "*:\/\/*.goto.com\/*",
                "*:\/\/*.gotowebinar.com\/*",
                "*:\/\/*.microsoft.com\/*",
                "*:\/\/*.webex.com\/*",
                "*:\/\/*.zoom.us\/*"
            ]
        }
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    }
}