Calmoon for Garoon

Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/

Calmoon for Garoon란 무엇입니까?

Calmoon for Garoon은(는) tasshi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/"입니다.

확장 프로그램 스크린샷

screenshot

Calmoon for Garoon 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension make you free from sending/receiving notifications on Garoon🤫
- Disable "Notify this update" when you join/leave event on Garoon 
- Auto-read uninformative notifications

More details: https://github.com/mshrtsr/browser-extension-calmoon

This OSS is my own personal work and does not have any relationship with Cybozu Inc. or any other organization which I belong to.                    

확장 프로그램 기본 정보

이름 Calmoon for Garoon Calmoon for Garoon
ID adpfpbogonofdljjmipfpheknmadjdck
공식 URL https://chromewebstore.google.com/detail/calmoon-for-garoon/adpfpbogonofdljjmipfpheknmadjdck
설명 Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/
파일 크기 260 KB
설치 횟수 282
현재 버전 1.3.2
최근 업데이트 2022-10-09
출시 날짜 2020-06-12
개발자 tasshi
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mshrtsr/browser-extension-calmoon
도움말 페이지 URL https://github.com/mshrtsr/browser-extension-calmoon/issues
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "version": "1.3.2",
    "short_name": "__MSG_extensionShortName__",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.cybozu.com\/g\/schedule\/participate*",
                "https:\/\/*.cybozu.com\/g\/schedule\/leave*",
                "https:\/\/*.cybozu-dev.com\/g\/schedule\/participate*",
                "https:\/\/*.cybozu-dev.com\/g\/schedule\/leave*",
                "https:\/\/*.kintone.com\/g\/schedule\/participate*",
                "https:\/\/*.kintone.com\/g\/schedule\/leave*",
                "https:\/\/*.kintone-dev.com\/g\/schedule\/participate*",
                "https:\/\/*.kintone-dev.com\/g\/schedule\/leave*",
                "https:\/\/*.cybozu.cn\/g\/schedule\/participate*",
                "https:\/\/*.cybozu.cn\/g\/schedule\/leave*",
                "https:\/\/*.cybozu-dev.cn\/g\/schedule\/participate*",
                "https:\/\/*.cybozu-dev.cn\/g\/schedule\/leave*"
            ],
            "js": [
                "content-scripts\/prevent-send-notification.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.cybozu.com\/*",
                "https:\/\/*.cybozu-dev.com\/*",
                "https:\/\/*.kintone.com\/*",
                "https:\/\/*.kintone-dev.com\/*",
                "https:\/\/*.cybozu.cn\/*",
                "https:\/\/*.cybozu-dev.cn\/*"
            ],
            "js": [
                "content-scripts\/auto-read-notifications.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "settings\/options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ]
}