Meet Scheduler
An extension to start meetings automatically
What is Meet Scheduler?
Meet Scheduler is a Chrome extension developed by Akshat, and its main feature is "An extension to start meetings automatically".
Extension Screenshots
Download Meet Scheduler Extension CRX File
Download Meet Scheduler 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
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!
Extension Basic Information
Name | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
Official URL | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
Description | An extension to start meetings automatically |
File Size | 105 KB |
Installation Count | 56 |
Current Version | 0.1.4 |
Last Updated | 2022-02-02 |
Publish Date | 2021-08-14 |
Rating | 5.00/5 Total 3 Ratings |
Developer | Akshat |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://akshat-oke.github.io/privacy.html |
Supported Languages | 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\/*" ] } } |