Garoon Notificator

Notify Cybozu Garoon schedule & unread notifications

Garoon Notificatorคืออะไร?

Garoon Notificator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Shinya Kamiaka และคุณลักษณะหลักของมันคือ "Notify Cybozu Garoon schedule & unread notifications"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ 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
    }
}