Notifyer
Set notifications when certain words are spoken in Google Meets.
Notifyer क्या है?
Notifyer https://shaneduffy.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Set notifications when certain words are spoken in Google Meets."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Notifyer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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-
एक्सटेंशन की मूल जानकारी
नाम | Notifyer |
ID | lgcickaldmfnogadcbgiadelhbfmbeoi |
आधिकारिक URL | https://chromewebstore.google.com/detail/notifyer/lgcickaldmfnogadcbgiadelhbfmbeoi |
विवरण | Set notifications when certain words are spoken in Google Meets. |
फ़ाइल का आकार | 43.02 KB |
स्थापना संख्या | 3,000 |
वर्तमान संस्करण | 1.4 |
अंतिम अपडेट | 2022-08-02 |
प्रकाशन तिथि | 2020-09-23 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://shaneduffy.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/cppshane/notifyer |
समर्थित भाषाएँ | 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 } |