Right-Click to Calendar

Right-Click to Calendar

選択したテキストをGoogleカレンダーに投稿できる拡張です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "38": "icons/38.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "name": "Right-Click to Calendar",
  "description": "選択したテキストをGoogleカレンダーに投稿できる拡張です。",
  "options_page": "options.html",
  "permissions": [
    "contextMenus",
    "identity",
    "storage"
  ],
  "version": "3.67",
  "manifest_version": 3,
  "oauth2": {
    "client_id": "94384066361-079ot4sjd46238ijfdm8do77786to6po.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/calendar.events",
      "https://www.googleapis.com/auth/calendar.readonly"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "assets/js/content.js"
      ]
    }
  ]
}