Garoon 2 GoogleCalendar

Garoon 2 GoogleCalendar

クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Garoon 2 GoogleCalendar",
  "short_name": "Garoon2GCal",
  "description": "クラウド型ガルーンのイベントをGoogleCalendarに楽に同期でいるようにするクローム拡張アプリ。",
  "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"
  ]
}