AreYouRecording
Just a little notification to remind you to record your google meets, with some added options.
什么是AreYouRecording?
AreYouRecording是由https://dancodes.online开发的Chrome扩展程序,该扩展的主要功能是“Just a little notification to remind you to record your google meets, with some added options.”。
扩展截图
下载AreYouRecording扩展crx文件
下载AreYouRecording扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google meets often need to be recorded and many people forget. This extension provides very simple and basic functionality to remind you to record your google meets. "AreYouRecording" was first made for teachers who need to record their classes for students who miss class and privacy reasons but it is not limited to this, any user that needs a little reminder can use this extension. 1. Install "AreYouRecording" 2. Navigate to a google meet you have permission to record in 3. Notice the message reminding you to record your meet 4. Click the message to dismiss Note. The extension will not activate if you do not have permission to record the meeting Developed by DanCodes
扩展基本信息
名称 | AreYouRecording |
ID | inclbgdmhheebmihljedogpbfkaeeaci |
官方URL | https://chromewebstore.google.com/detail/areyourecording/inclbgdmhheebmihljedogpbfkaeeaci |
简介 | Just a little notification to remind you to record your google meets, with some added options. |
文件大小 | 211 KB |
安装次数 | 942 |
当前版本 | 1.0.3 |
更新时间 | 2022-01-11 |
上架时间 | 2020-11-21 |
评分 | 4.00/5 共2次评分 |
开发者 | https://dancodes.online |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/dan-online/areyourecording |
帮助页面URL | https://github.com/dan-online/areyourecording/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AreYouRecording", "version": "1.0.3", "manifest_version": 2, "description": "Just a little notification to remind you to record your google meets, with some added options.", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "page_action": { "default_icon": "icons\/icon19.png" }, "permissions": [ "https:\/\/meet.google.com\/*,http:\/\/meet.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*", "http:\/\/meet.google.com\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "https:\/\/meet.google.com\/*", "http:\/\/meet.google.com\/*" ], "js": [ "src\/inject\/inject.js" ], "run_at": "document_idle" } ] } |