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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
}