Notifyer
Set notifications when certain words are spoken in Google Meets.
Wat is Notifyer?
Notifyer is een Chrome-extensie ontwikkeld door https://shaneduffy.io, en de belangrijkste functie is "Set notifications when certain words are spoken in Google Meets.".
Extensie Screenshots
Download het CRX-bestand van de extensie Notifyer
Download Notifyer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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-
Basisinformatie over de Extensie
Naam | Notifyer |
ID | lgcickaldmfnogadcbgiadelhbfmbeoi |
Officiële URL | https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi |
Beschrijving | Set notifications when certain words are spoken in Google Meets. |
Bestandsgrootte | 43.02 KB |
Aantal Installaties | 3,000 |
Huidige Versie | 1.4 |
Laatst Bijgewerkt | 2022-08-02 |
Publicatiedatum | 2020-09-23 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | https://shaneduffy.io |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/cppshane/notifyer |
Ondersteunde Talen | 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 } |