Garoon Notificator
Notify Cybozu Garoon schedule & unread notifications
Что такое Garoon Notificator?
Garoon Notificator - это расширение Chrome, разработанное Shinya Kamiaka, и его основная функция - "Notify Cybozu Garoon schedule & unread notifications".
Снимки экрана расширения
Скачать файл CRX расширения Garoon Notificator
Скачайте файлы расширений Garoon Notificator в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 Основная информация о расширении
| Название | |
| ID | lfohannhncoccolncphiafnggpdpfcka |
| Официальный URL | https://chromewebstore.google.com/detail/garoon-notificator/lfohannhncoccolncphiafnggpdpfcka |
| Описание | Notify Cybozu Garoon schedule & unread notifications |
| Размер файла | 98.59 KB |
| Количество установок | 188 |
| Текущая Версия | 1.2.0 |
| Последнее Обновление | 2023-03-01 |
| Дата публикации | 2021-07-13 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Shinya Kamiaka |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/kamiaka/garoon-chrome-extension |
| URL страницы помощи | https://github.com/kamiaka/garoon-chrome-extension/issues |
| Поддерживаемые языки | 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
}
} | |