AreYouRecording

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

¿Qué es AreYouRecording?

AreYouRecording es una extensión de Chrome desarrollada por https://dancodes.online, y su función principal es "Just a little notification to remind you to record your google meets, with some added options.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión AreYouRecording

Descarga archivos de extensión AreYouRecording en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre AreYouRecording AreYouRecording
ID inclbgdmhheebmihljedogpbfkaeeaci
URL Oficial https://chromewebstore.google.com/detail/areyourecording/inclbgdmhheebmihljedogpbfkaeeaci
Descripción Just a little notification to remind you to record your google meets, with some added options.
Tamaño del Archivo 211 KB
Cantidad de Instalaciones 942
Versión Actual 1.0.3
Última Actualización 2022-01-11
Fecha de Publicación 2020-11-21
Calificación 4.00/5 Total de 2 Calificaciones
Desarrollador https://dancodes.online
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/dan-online/areyourecording
URL de la Página de Ayuda https://github.com/dan-online/areyourecording/issues
Idiomas Soportados 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"
        }
    ]
}