Garoon Notificator
Notify Cybozu Garoon schedule & unread notifications
Garoon Notificatorとは何ですか?
Garoon NotificatorはShinya Kamiakaによって開発されたChromeの拡張機能で、その主な機能は「Notify Cybozu Garoon schedule & unread notifications」です。
拡張機能のスクリーンショット
Garoon Notificator拡張機能のCRXファイルをダウンロード
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 |
| Eメール | [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
}
} | |