Meet Scheduler
An extension to start meetings automatically
Wat is Meet Scheduler?
Meet Scheduler is een Chrome-extensie ontwikkeld door Akshat, en de belangrijkste functie is "An extension to start meetings automatically".
Extensie Screenshots
Download het CRX-bestand van de extensie Meet Scheduler
Download Meet Scheduler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
Officiële URL | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
Beschrijving | An extension to start meetings automatically |
Bestandsgrootte | 105 KB |
Aantal Installaties | 56 |
Huidige Versie | 0.1.4 |
Laatst Bijgewerkt | 2022-02-02 |
Publicatiedatum | 2021-08-14 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | Akshat |
[email protected] | |
Betalingswijze | free |
URL van de Privacybeleid Pagina | https://akshat-oke.github.io/privacy.html |
Ondersteunde Talen | 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\/*" ] } } |