Notifyer

Set notifications when certain words are spoken in Google Meets.

Qu'est-ce que Notifyer ?

Notifyer est une extension Chrome développée par https://shaneduffy.io, et sa fonction principale est "Set notifications when certain words are spoken in Google Meets.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Notifyer

Téléchargez les fichiers d'extension Notifyer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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-                    

Informations de Base sur l'Extension

Nom Notifyer Notifyer
ID lgcickaldmfnogadcbgiadelhbfmbeoi
URL Officiel https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi
Description Set notifications when certain words are spoken in Google Meets.
Taille du Fichier 43.02 KB
Nombre d'Installations 3,000
Version Actuelle 1.4
Dernière Mise à Jour 2022-08-02
Date de Publication 2020-09-23
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://shaneduffy.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/cppshane/notifyer
Langues Prises en Charge 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
}