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文件

下載Brave Talk for Calendars擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}