Garoon Notificator

Notify Cybozu Garoon schedule & unread notifications

Garoon Notificator là gì?

Garoon Notificator là một tiện ích mở rộng Chrome được phát triển bởi Shinya Kamiaka, và tính năng chính của nó là "Notify Cybozu Garoon schedule & unread notifications".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Garoon Notificator

Tải xuống các tệp mở rộng Garoon Notificator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Garoon Notificator Garoon Notificator
ID lfohannhncoccolncphiafnggpdpfcka
URL Chính Thức https://chromewebstore.google.com/detail/garoon-notificator/lfohannhncoccolncphiafnggpdpfcka
Mô tả Notify Cybozu Garoon schedule & unread notifications
Kích Thước Tệp 98.59 KB
Số Lần Cài Đặt 188
Phiên Bản Hiện Tại 1.2.0
Cập Nhật Lần Cuối 2023-03-01
Ngày Phát Hành 2021-07-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Shinya Kamiaka
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kamiaka/garoon-chrome-extension
URL Trang Trợ Giúp https://github.com/kamiaka/garoon-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}