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
Eメール [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
}