Google Calendar Events to Kintone 2

Google Calendar Events to Kintone 2

Googleカレンダーの1日分のスケジュールをKintoneの業務日報に登録(入力補助)する拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Calendar Events to Kintone 2",
  "description": "Googleカレンダーの1日分のスケジュールをKintoneの業務日報に登録(入力補助)する拡張機能です。",
  "version": "2.0.0",
  "minimum_chrome_version": "88",
  "icons": {
    "128": "images/icon/icon_128.png"
  },
  "action": {
    "default_icon": {
      "128": "images/icon/icon_128.png"
    },
    "default_title": "Google Calendar Events to Kintone 2",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "identity"
  ],
  "host_permissions": [
    "http://www.google.com/*",
    "https://www.google.com/*",
    "https://www.googleapis.com/*",
    "https://accounts.google.com/o/oauth2/token",
    "https://www.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.cybozu.com/*"
      ],
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/jquery-ui.js",
        "js/content.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "535644804569-8ibm9jmubd639kiihg1uu3l13or7nif1.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.events",
      "https://www.googleapis.com/auth/calendar.readonly"
    ]
  }
}