Notifyer
Set notifications when certain words are spoken in Google Meets.
What is Notifyer?
Notifyer is a Chrome extension developed by https://shaneduffy.io, and its main feature is "Set notifications when certain words are spoken in Google Meets.".
Extension Screenshots
Download Notifyer Extension CRX File
Download Notifyer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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-
Extension Basic Information
Name | Notifyer |
ID | lgcickaldmfnogadcbgiadelhbfmbeoi |
Official URL | https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi |
Description | Set notifications when certain words are spoken in Google Meets. |
File Size | 43.02 KB |
Installation Count | 3,000 |
Current Version | 1.4 |
Last Updated | 2022-08-02 |
Publish Date | 2020-09-23 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://shaneduffy.io |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/cppshane/notifyer |
Supported Languages | 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 } |