Brave Talk for Calendars
Schedule Brave Talk meetings directly from your web-based calendar
What is Brave Talk for Calendars?
Brave Talk for Calendars is a Chrome extension developed by Brave Software, and its main feature is "Schedule Brave Talk meetings directly from your web-based calendar".
Extension Screenshots
Download Brave Talk for Calendars Extension CRX File
Download Brave Talk for Calendars extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | nimfmkdcckklbkhjjkmbjfcpaiifgamg |
Official URL | https://chromewebstore.google.com/detail/brave-talk-for-calendars/nimfmkdcckklbkhjjkmbjfcpaiifgamg |
Description | Schedule Brave Talk meetings directly from your web-based calendar |
File Size | 26.83 KB |
Installation Count | 9,729 |
Current Version | 2.0.2 |
Last Updated | 2023-11-09 |
Publish Date | 2022-03-03 |
Rating | 4.95/5 Total 21 Ratings |
Developer | Brave Software |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/brave/brave-talk-gcalendar-extension |
Help Page URL | https://github.com/brave/brave-talk-gcalendar-extension/issues |
Privacy Policy Page URL | https://brave.com/privacy/browser |
Supported Languages | 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" } } |