コンテキストガジェット <サテライトオフィス>

コンテキストガジェット <サテライトオフィス>

LINE WORKS や Workplace by Facebook の画面にワークフローや既存システムなどを表示します

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2.2",
  "default_locale": "ja",
  "name": "__MSG_extension_name__",
  "description": "__MSG_extension_description__",
  "icons": {
    "16": "images/sateraito16.png",
    "32": "images/sateraito32.png",
    "48": "images/sateraito48.png",
    "128": "images/sateraito128.png"
  },
  "host_permissions": [
    "<all_urls>",
    "https://*.worksmobile.com/*",
    "https://*.facebook.com/*",
    "https://*.workplace.com/*"
  ],
  "permissions": [
    "webNavigation"
  ],
  "background": {
    "service_worker": "stcgfb_bg.js"
  },
  "content_scripts": [
    {
      "css": [
        "colorbox.css"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "jquery.colorbox-min.js",
        "sifij_contents.js"
      ],
      "matches": [
        "https://*.worksmobile.com/*",
        "https://*.microsoft.com/*",
        "https://chat.google.com/*"
      ],
      "run_at": "document_idle"
    },
    {
      "css": [
        "colorbox.css"
      ],
      "js": [
        "jquery-2.2.4.min.js",
        "jquery.colorbox-min.js",
        "stcgfb_ct.js"
      ],
      "matches": [
        "https://*.facebook.com/*",
        "https://*.workplace.com/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}