Garoon Notificator
Notify Cybozu Garoon schedule & unread notifications
什么是Garoon Notificator?
Garoon Notificator是由Shinya Kamiaka开发的Chrome扩展程序,该扩展的主要功能是“Notify Cybozu Garoon schedule & unread notifications”。
扩展截图
下载Garoon Notificator扩展crx文件
下载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 |
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 } } |