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