AreYouRecording

Just a little notification to remind you to record your google meets, with some added options.

AreYouRecording là gì?

AreYouRecording là một tiện ích mở rộng Chrome được phát triển bởi https://dancodes.online, và tính năng chính của nó là "Just a little notification to remind you to record your google meets, with some added options.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AreYouRecording

Tải xuống các tệp mở rộng AreYouRecording dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AreYouRecording AreYouRecording
ID inclbgdmhheebmihljedogpbfkaeeaci
URL Chính Thức https://chromewebstore.google.com/detail/areyourecording/inclbgdmhheebmihljedogpbfkaeeaci
Mô tả Just a little notification to remind you to record your google meets, with some added options.
Kích Thước Tệp 211 KB
Số Lần Cài Đặt 942
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2022-01-11
Ngày Phát Hành 2020-11-21
Đánh Giá 4.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://dancodes.online
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dan-online/areyourecording
URL Trang Trợ Giúp https://github.com/dan-online/areyourecording/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}