Garoon Notificator

Notify Cybozu Garoon schedule & unread notifications

Garoon Notificator क्या है?

Garoon Notificator Shinya Kamiaka द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notify Cybozu Garoon schedule & unread notifications"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Garoon Notificator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
    }
}