Notifyer

Set notifications when certain words are spoken in Google Meets.

¿Qué es Notifyer?

Notifyer es una extensión de Chrome desarrollada por https://shaneduffy.io, y su función principal es "Set notifications when certain words are spoken in Google Meets.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Notifyer

Descarga archivos de extensión Notifyer 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

                        Use Notifyer by visiting meet.google.com and selecting the Notifyer icon in your extensions toolbar. Add words you want to be detected to the list. Clicking a word in the list will automatically toggle the detection state on/off.

Note: you must have captions turned on in order for text to be detected.

This application is open source, the Github link is above. Submit any issues there, and feel free to contribute.

-Plans to add Google Hangouts and Zoom in the near future-                    

Información Básica de la Extensión

Nombre Notifyer Notifyer
ID lgcickaldmfnogadcbgiadelhbfmbeoi
URL Oficial https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi
Descripción Set notifications when certain words are spoken in Google Meets.
Tamaño del Archivo 43.02 KB
Cantidad de Instalaciones 3,000
Versión Actual 1.4
Última Actualización 2022-08-02
Fecha de Publicación 2020-09-23
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador https://shaneduffy.io
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/cppshane/notifyer
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifyer",
    "version": "1.4",
    "description": "Set notifications when certain words are spoken in Google Meets.",
    "permissions": [
        "declarativeContent",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/meet.js"
            ],
            "matches": [
                "*:\/\/*.meet.google.com\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/logo16.png",
            "32": "img\/logo32.png",
            "48": "img\/logo48.png",
            "128": "img\/logo128.png"
        }
    },
    "icons": {
        "16": "img\/logo16.png",
        "32": "img\/logo32.png",
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "manifest_version": 2
}