Meet Scheduler
An extension to start meetings automatically
什么是Meet Scheduler?
Meet Scheduler是由Akshat开发的Chrome扩展程序,该扩展的主要功能是“An extension to start meetings automatically”。
扩展截图
下载Meet Scheduler扩展crx文件
下载Meet Scheduler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | Meet Scheduler |
ID | aenhmmfelkmdlihmaiblnhdmfopmbonc |
官方URL | https://chromewebstore.google.com/detail/meet-scheduler/aenhmmfelkmdlihmaiblnhdmfopmbonc |
简介 | An extension to start meetings automatically |
文件大小 | 105 KB |
安装次数 | 56 |
当前版本 | 0.1.4 |
更新时间 | 2022-02-02 |
上架时间 | 2021-08-14 |
评分 | 5.00/5 共3次评分 |
开发者 | Akshat |
电子邮箱 | [email protected] |
付费类型 | free |
隐私政策页面URL | https://akshat-oke.github.io/privacy.html |
支持的语言 | 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\/*" ] } } |