Meet Notifications

Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.

Meet Notifications란 무엇입니까?

Meet Notifications은(는) DevDiary에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Meet Notifications 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        --- วิธีใช้งาน ---
1. คลิกที่ icon "Meet Notifications"
2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า
เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍

--- How to use ---
1. Click on the icon "Meet Notifications".
2. Click the switch button to change the status to blue.
That's it. You can use the Meet Notifications. 👍                    

확장 프로그램 기본 정보

이름 Meet Notifications Meet Notifications
ID lekaeknoegncijhnchifjdnclipppcnp
공식 URL https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp
설명 Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
파일 크기 19.48 KB
설치 횟수 34
현재 버전 0.1.5
최근 업데이트 2020-06-24
출시 날짜 2020-06-24
평점 4.00/5 총 2 개의 평점
개발자 DevDiary
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.facebook.com/devdiaryTH
도움말 페이지 URL https://www.facebook.com/devdiaryTH
개인정보 보호 정책 페이지 URL https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Meet Notifications",
    "version": "0.1.5",
    "manifest_version": 2,
    "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.",
    "author": "Ic3berg",
    "content_security_policy": "default-src 'self'",
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/icon16.png",
            "48": "assets\/icon48.png",
            "128": "assets\/icon128.png"
        },
        "default_popup": "popup.html",
        "default_title": "Meet Notifications"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content.js",
                "controller.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "content.js",
        "controller.js"
    ]
}