Meet Scheduler
An extension to start meetings automatically
Co to jest Meet Scheduler?
Meet Scheduler to rozszerzenie Chrome opracowane przez Akshat, a jego główną funkcją jest „An extension to start meetings automatically”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Meet Scheduler
Pobierz pliki rozszerzeń Meet Scheduler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
Oficjalny URL | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
Opis | An extension to start meetings automatically |
Rozmiar pliku | 105 KB |
Liczba instalacji | 56 |
Aktualna Wersja | 0.1.4 |
Ostatnia Aktualizacja | 2022-02-02 |
Data Publikacji | 2021-08-14 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Akshat |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | https://akshat-oke.github.io/privacy.html |
Obsługiwane Języki | 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\/*" ] } } |