Garoon Notificator
Notify Cybozu Garoon schedule & unread notifications
Cos'è Garoon Notificator?
Garoon Notificator è un'estensione di Chrome sviluppata da Shinya Kamiaka, e la sua funzione principale è "Notify Cybozu Garoon schedule & unread notifications".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Garoon Notificator
Scarica i file di estensione Garoon Notificator 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
Garoon Notificator is notifies your Cybozu Garoon (Japanese group-ware) schedules & unread notifications. * Access to only your specified URLs at your specified intervals. - Your specified Cybozu Garoon API for fetch your schedules & unread notifications. (https://developer.cybozu.io/hc/ja/articles/360000577946) - Your specified web-hook URL for POST your schedules when fetch schedule API. * Notifies your Cybozu Garoon schedules at your specified minutes before schedule time. * Notifies your unread notifications at fetch unread notifications. ## Releases - https://github.com/kamiaka/garoon-chrome-extension/releases ### v1.2.0 - Add a button to link to options page from popup page. - Remove unnecessary permission `tabs` ### v1.1.1, v1.1.2 - Fix options checkbox ### v1.1.0 - Add skip keywords option - Add webhook custom headers option ### v1.0.3 - Don't reset options on update extension. ### v1.0.2 - No redirect in API request. ### v1.0.0 - Created
Informazioni di Base sull'Estensione
Nome | Garoon Notificator |
ID | lfohannhncoccolncphiafnggpdpfcka |
URL Ufficiale | https://chromewebstore.google.com/detail/garoon-notificator/lfohannhncoccolncphiafnggpdpfcka |
Descrizione | Notify Cybozu Garoon schedule & unread notifications |
Dimensione del File | 98.59 KB |
Conteggio Installazioni | 188 |
Versione Corrente | 1.2.0 |
Ultimo Aggiornamento | 2023-03-01 |
Data di Pubblicazione | 2021-07-13 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Shinya Kamiaka |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/kamiaka/garoon-chrome-extension |
URL della Pagina di Aiuto | https://github.com/kamiaka/garoon-chrome-extension/issues |
Lingue Supportate | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_ext_name__", "version": "1.2.0", "author": "Shinya Kamiaka", "description": "__MSG_ext_description__", "icons": { "128": "icon\/ga.png" }, "browser_action": { "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "default_locale": "en", "permissions": [ "alarms", "notifications", "storage", "https:\/\/*\/" ], "options_ui": { "page": "options.html", "open_in_tab": true } } |