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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |