Notifyer

Set notifications when certain words are spoken in Google Meets.

Notifyerคืออะไร?

Notifyer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://shaneduffy.io และคุณลักษณะหลักของมันคือ "Set notifications when certain words are spoken in Google Meets."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notifyer

ดาวน์โหลดไฟล์ส่วนขยาย 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
}