GOTSUGO

GOTSUGO

Googleカレンダーから、自動で空いている時間帯だけをテキストで書き出します。Googleカレンダーを開くと右上にGOTSUGOのボタンが現れます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GOTSUGO",
  "description": "Googleカレンダーから、自動で空いている時間帯だけをテキストで書き出します。Googleカレンダーを開くと右上にGOTSUGOのボタンが現れます。",
  "version": "4.0",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.tsx.js.js"
      ],
      "matches": [
        "https://calendar.google.com/calendar/*/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "homepage_url": "https://dokosore.com",
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "**/*",
        "*"
      ],
      "use_dynamic_url": true
    }
  ],
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  }
}