Brave Talk for Calendars

Schedule Brave Talk meetings directly from your web-based calendar

Brave Talk for Calendars란 무엇입니까?

Brave Talk for Calendars은(는) Brave Software에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Schedule Brave Talk meetings directly from your web-based calendar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Brave Talk for Calendars 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        A simple extension that allows you to schedule Brave Talk meetings within web-based Google, Proton, and Skiff calendars.

This extension is Open Source and the source code can be found at https://github.com/brave/brave-talk-gcalendar-extension.                    

확장 프로그램 기본 정보

이름 Brave Talk for Calendars Brave Talk for Calendars
ID nimfmkdcckklbkhjjkmbjfcpaiifgamg
공식 URL https://chromewebstore.google.com/detail/brave-talk-for-calendars/nimfmkdcckklbkhjjkmbjfcpaiifgamg
설명 Schedule Brave Talk meetings directly from your web-based calendar
파일 크기 26.83 KB
설치 횟수 9,729
현재 버전 2.0.2
최근 업데이트 2023-11-09
출시 날짜 2022-03-03
평점 4.95/5 총 21 개의 평점
개발자 Brave Software
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/brave/brave-talk-gcalendar-extension
도움말 페이지 URL https://github.com/brave/brave-talk-gcalendar-extension/issues
개인정보 보호 정책 페이지 URL https://brave.com/privacy/browser
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en_US",
    "version": "2.0.2",
    "minimum_chrome_version": "97",
    "icons": {
        "16": "brave_talk_icon_16x.png",
        "48": "brave_talk_icon_48x.png",
        "128": "brave_talk_icon_128x.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.skiff.com\/*",
                "https:\/\/calendar.proton.me\/*",
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "all.css"
            ],
            "all_frames": true,
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/app.skiff.com\/*"
            ],
            "css": [
                "skiff.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "brave_talk_icon_48x.png",
                "brave_talk_icon.svg"
            ],
            "matches": [
                "https:\/\/app.skiff.com\/*",
                "https:\/\/calendar.proton.me\/*",
                "https:\/\/calendar.google.com\/*"
            ]
        }
    ],
    "action": {
        "default_title": "__MSG_popupTitle__",
        "default_popup": "popup.html"
    }
}