Brave Talk for Calendars
Schedule Brave Talk meetings directly from your web-based calendar
Cos'è Brave Talk for Calendars?
Brave Talk for Calendars è un'estensione di Chrome sviluppata da Brave Software, e la sua funzione principale è "Schedule Brave Talk meetings directly from your web-based calendar".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Brave Talk for Calendars
Scarica i file di estensione Brave Talk for Calendars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Brave Talk for Calendars |
ID | nimfmkdcckklbkhjjkmbjfcpaiifgamg |
URL Ufficiale | https://chromewebstore.google.com/detail/brave-talk-for-calendars/nimfmkdcckklbkhjjkmbjfcpaiifgamg |
Descrizione | Schedule Brave Talk meetings directly from your web-based calendar |
Dimensione del File | 26.83 KB |
Conteggio Installazioni | 9,729 |
Versione Corrente | 2.0.2 |
Ultimo Aggiornamento | 2023-11-09 |
Data di Pubblicazione | 2022-03-03 |
Valutazione | 4.95/5 Totale 21 Valutazioni |
Sviluppatore | Brave Software |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/brave/brave-talk-gcalendar-extension |
URL della Pagina di Aiuto | https://github.com/brave/brave-talk-gcalendar-extension/issues |
URL della Pagina della Politica sulla Privacy | https://brave.com/privacy/browser |
Lingue Supportate | 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" } } |