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은(는) Yuku Kotani에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Web extension to show browser notification on events in gather.town such as receiving chats or being ringed."입니다.

확장 프로그램 스크린샷

Gather.town Notification 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        # 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"
            ]
        }
    ]
}