Notifyer

Set notifications when certain words are spoken in Google Meets.

什么是Notifyer?

Notifyer是由https://shaneduffy.io开发的Chrome扩展程序,该扩展的主要功能是“Set notifications when certain words are spoken in Google Meets.”。

扩展截图

screenshot

下载Notifyer扩展crx文件

下载Notifyer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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
}