Garoon Notificator
Notify Cybozu Garoon schedule & unread notifications
What is Garoon Notificator?
Garoon Notificator is a Chrome extension developed by Shinya Kamiaka, and its main feature is "Notify Cybozu Garoon schedule & unread notifications".
Extension Screenshots
Download Garoon Notificator Extension CRX File
Download Garoon Notificator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Garoon Notificator |
ID | lfohannhncoccolncphiafnggpdpfcka |
Official URL | https://chromewebstore.google.com/detail/garoon-notificator/lfohannhncoccolncphiafnggpdpfcka |
Description | Notify Cybozu Garoon schedule & unread notifications |
File Size | 98.59 KB |
Installation Count | 188 |
Current Version | 1.2.0 |
Last Updated | 2023-03-01 |
Publish Date | 2021-07-13 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Shinya Kamiaka |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kamiaka/garoon-chrome-extension |
Help Page URL | https://github.com/kamiaka/garoon-chrome-extension/issues |
Supported Languages | 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 } } |