Meet Scheduler
An extension to start meetings automatically
Cos'è Meet Scheduler?
Meet Scheduler è un'estensione di Chrome sviluppata da Akshat, e la sua funzione principale è "An extension to start meetings automatically".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Meet Scheduler
Scarica i file di estensione Meet Scheduler 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
Meetimely is the extension for online classes. Avoid fumbling with meeting links and times and missing your important lecture. Avoid that moment when you realise you forgot to leave the meeting when it ended hours ago. Just add your meeting link, time and duration and sit back as it is handled for you. New: Save and share your meeting details with others!
Informazioni di Base sull'Estensione
Nome | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
URL Ufficiale | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
Descrizione | An extension to start meetings automatically |
Dimensione del File | 105 KB |
Conteggio Installazioni | 56 |
Versione Corrente | 0.1.4 |
Ultimo Aggiornamento | 2022-02-02 |
Data di Pubblicazione | 2021-08-14 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Akshat |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://akshat-oke.github.io/privacy.html |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Scheduler", "version": "0.1.4", "description": "An extension to start meetings automatically", "manifest_version": 3, "icons": { "48": "icon48.png" }, "permissions": [ "storage", "alarms", "tabs" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Schedule meets", "default_popup": "popup\/popup.html" }, "options_page": "options_page\/options_page.html", "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "css": [ "google-meet.css" ], "js": [ "meet_script.js", "endCall-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "google-meet.html" ], "matches": [ "https:\/\/meet.google.com\/*", "https:\/\/www.google.com\/*" ] } ], "externally_connectable": { "matches": [ "*:\/\/localhost\/*", "https:\/\/*.jeenius.gq\/*" ] } } |