サテライトオフィス・日報/交通費精算 for Google Workspace(無償版)

サテライトオフィス・日報/交通費精算 for Google Workspace(無償版)

Googleカレンダー予定画面に日報/交通費精算申請画面を埋め込みます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0.0",
  "default_locale": "ja",
  "homepage_url": "http://www.sateraito.jp/",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "icons": {
    "48": "satelite48.png",
    "128": "satelite128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "identity",
    "identity.email"
  ],
  "host_permissions": [
    "https://sateraito-apps-nippo2.appspot.com/"
  ],
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "jquery-1.10.2.min.js",
        "action_register_btn.js"
      ],
      "matches": [
        "*://www.google.com/calendar/*",
        "*://calendar.google.com/calendar/*",
        "*://sateraito-apps-nippo2.appspot.com/*"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "Logo.gif",
        "bg_White.gif",
        "arrow-up.png",
        "arrow-down.png",
        "loading.gif",
        "jquery-1.10.2.min.map"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}