Garoon Notificator

Notify Cybozu Garoon schedule & unread notifications

Garoon Notificator란 무엇입니까?

Garoon Notificator은(는) Shinya Kamiaka에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Notify Cybozu Garoon schedule & unread notifications"입니다.

확장 프로그램 스크린샷

screenshot

Garoon Notificator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Garoon Notificator Garoon Notificator
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
    }
}