Gather.town Notification

Web extension to show browser notification on events in gather.town such as receiving chats or being ringed.

Gather.town Notificationคืออะไร?

Gather.town Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yuku Kotani และคุณลักษณะหลักของมันคือ "Web extension to show browser notification on events in gather.town such as receiving chats or being ringed."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gather.town Notification

ดาวน์โหลดไฟล์ส่วนขยาย Gather.town Notification ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        # English:

This extension is for Gather(gather.town).

You can receive the desktop notification on receiving chat or being ringed while the Gather tab is not active or in the background.

Please allow two notification permissions below before using this.
- Notification permission of gather.town domain in your Chrome.
  - ref: https://support.google.com/chrome/answer/114662
- Notification permission of Chrome in your OS.

# 日本語:

Gather(gather.town) 専用の拡張機能です。

Gatherを開いているタブがバックグラウンドにあるときにチャットやringを受信すると、デスクトップ通知を受け取ることができます。

以下2つの通知権限をどちらも許可してからご利用ください。
- Chrome内における gather.town の通知権限
  - 参考: https://support.google.com/chrome/answer/114662
- OSレベルでの Chrome の通知権限                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gather.town Notification Gather.town Notification
ID adneeofhjneljcfhkcnpjpmgafafifbb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gathertown-notification/adneeofhjneljcfhkcnpjpmgafafifbb
คำอธิบาย Web extension to show browser notification on events in gather.town such as receiving chats or being ringed.
ขนาดไฟล์ 59.25 KB
จำนวนการติดตั้ง 673
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2022-06-29
วันที่เผยแพร่ 2022-03-11
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Yuku Kotani
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Monchi/gather-notification-extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gather.town Notification",
    "version": "1.0.4",
    "icons": {
        "16": "assets\/icons\/favicon.png",
        "32": "assets\/icons\/favicon.png",
        "48": "assets\/icons\/favicon.png",
        "128": "assets\/icons\/favicon.png"
    },
    "description": "Web extension to show browser notification on events in gather.town such as receiving chats or being ringed.",
    "homepage_url": "https:\/\/github.com\/Monchi\/gather-notification-extension",
    "short_name": "Gather.town Notification",
    "permissions": [],
    "host_permissions": [],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/runtime.bundle.js"
            ],
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "extension_ids": [
                "adneeofhjneljcfhkcnpjpmgafafifbb",
                "gajddopnomidpenggadfajfcgkadcncd"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "author": "Yuku Kotani",
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/favicon.png",
            "32": "assets\/icons\/favicon.png",
            "48": "assets\/icons\/favicon.png",
            "128": "assets\/icons\/favicon.png"
        },
        "default_title": "tiny title",
        "chrome_style": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.gather.town\/*"
            ],
            "js": [
                "js\/contentScript.bundle.js"
            ]
        }
    ]
}