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
官方網址 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
}