Garoon 2 GoogleCalendar
クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。
Garoon 2 GoogleCalendarとは何ですか?
Garoon 2 GoogleCalendarはoldergodによって開発されたChromeの拡張機能で、その主な機能は「クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。」です。
Garoon 2 GoogleCalendar拡張機能のCRXファイルをダウンロード
Garoon 2 GoogleCalendar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。
機能説明
- クラウド型ガルーンのGroupWeekViewのみ対応。
- https://*.cybozu.com/g/* のみ対応。
- バナーイベントは対象外。
感想いっぱいどうぞ。
https://github.com/oldergod/garoon-to-google-calendar 拡張機能の基本情報
| 名前 | |
| ID | fpnofeookcjnldaoemphbikcgbgbklhe |
| 公式URL | https://chromewebstore.google.com/detail/garoon-2-googlecalendar/fpnofeookcjnldaoemphbikcgbgbklhe |
| 説明 | クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。 |
| ファイルサイズ | 12.72 KB |
| インストール数 | 86 |
| 現在のバージョン | 0.0.11 |
| 最終更新日 | 2016-08-05 |
| 公開日 | 2016-08-04 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | oldergod |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | ja |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Garoon 2 GoogleCalendar",
"short_name": "Garoon2GCal",
"description": "\u30af\u30e9\u30a6\u30c9\u578b\u30ac\u30eb\u30fc\u30f3\u306e\u30a4\u30d9\u30f3\u30c8\u3092GoogleCalendar\u306b\u697d\u306b\u540c\u671f\u3067\u3044\u308b\u3088\u3046\u306b\u3059\u308b\u30af\u30ed\u30fc\u30e0\u62e1\u5f35\u30a2\u30d7\u30ea\u3002",
"manifest_version": 2,
"version": "0.0.11",
"background": {
"scripts": [
"bundleJs\/bundleBackground.min.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/*.cybozu.com\/g\/*"
],
"js": [
"bundleJs\/bundleContentScript.min.js"
],
"css": [
"css\/contentScript.css"
],
"run_at": "document_end"
}
],
"options_page": "views\/options.html",
"options_ui": {
"page": "views\/options.html",
"chrome_style": true
},
"permissions": [
"identity",
"tabs",
"storage"
],
"content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
"oauth2": {
"client_id": "100199330116-h2jjskhd76aj7o2799so8q998fon1ieb.apps.googleusercontent.com",
"scopes": [
"https:\/\/www.googleapis.com\/auth\/calendar",
"https:\/\/www.googleapis.com\/auth\/calendar.readonly"
]
},
"web_accessible_resources": [
"images\/success.png",
"images\/sync.png"
]
} | |