AreYouRecording

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

ما هو AreYouRecording؟

AreYouRecording هو إضافة Chrome تم تطويرها بواسطة https://dancodes.online، والميزة الرئيسية لها هي "Just a little notification to remind you to record your google meets, with some added options.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة AreYouRecording

قم بتنزيل ملفات الامتداد AreYouRecording بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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
عنوان صفحة المساعدة 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"
        }
    ]
}