Garoon Notificator

Notify Cybozu Garoon schedule & unread notifications

O que é Garoon Notificator?

Garoon Notificator é uma extensão do Chrome desenvolvida por Shinya Kamiaka, e sua principal característica é "Notify Cybozu Garoon schedule & unread notifications".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Garoon Notificator

Baixe arquivos de extensão Garoon Notificator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Garoon Notificator Garoon Notificator
ID lfohannhncoccolncphiafnggpdpfcka
URL Oficial https://chromewebstore.google.com/detail/garoon-notificator/lfohannhncoccolncphiafnggpdpfcka
Descrição Notify Cybozu Garoon schedule & unread notifications
Tamanho do Arquivo 98.59 KB
Contagem de Instalações 188
Versão Atual 1.2.0
Última Atualização 2023-03-01
Data de Publicação 2021-07-13
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Shinya Kamiaka
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kamiaka/garoon-chrome-extension
URL da Página de Ajuda https://github.com/kamiaka/garoon-chrome-extension/issues
Idiomas Suportados 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
    }
}