Calmoon for Garoon
Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/
Cos'è Calmoon for Garoon?
Calmoon for Garoon è un'estensione di Chrome sviluppata da tasshi, e la sua funzione principale è "Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Calmoon for Garoon
Scarica i file di estensione Calmoon for Garoon in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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.                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | adpfpbogonofdljjmipfpheknmadjdck | 
| URL Ufficiale | https://chromewebstore.google.com/detail/calmoon-for-garoon/adpfpbogonofdljjmipfpheknmadjdck | 
| Descrizione | Make you free from sending/receiving notifications on Garoon https://garoon.cybozu.co.jp/ | 
| Dimensione del File | 260 KB | 
| Conteggio Installazioni | 282 | 
| Versione Corrente | 1.3.2 | 
| Ultimo Aggiornamento | 2022-10-09 | 
| Data di Pubblicazione | 2020-06-12 | 
| Sviluppatore | tasshi | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/mshrtsr/browser-extension-calmoon | 
| URL della Pagina di Aiuto | https://github.com/mshrtsr/browser-extension-calmoon/issues | 
| Lingue Supportate | 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"
    ]
}  |  |