タスク管理 for Chrome <サテライトオフィス>

タスク管理 for Chrome <サテライトオフィス>

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.5",
  "homepage_url": "http://www.sateraito.jp/",
  "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"
  },
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "author": "Sateraito Office",
  "background": {
    "service_worker": "stcgfb_bg.js",
    "type": "module"
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "js": [
        "jquery-2.2.4.min.js",
        "jquery.colorbox-min.js",
        "jquery-ui.min.js",
        "sateraito_lang.js",
        "sifij_contents.js"
      ],
      "css": [
        "jquery-ui.css",
        "font-awesome.css",
        "jquery.toolbar.css",
        "common.css"
      ],
      "matches": [
        "https://*.worksmobile.com/*",
        "https://task.sateraito.jp/ssogadget/*/management_auth_line*"
      ],
      "run_at": "document_idle"
    },
    {
      "js": [
        "jquery-2.2.4.min.js",
        "jquery-ui.min.js",
        "md5.min.js",
        "sateraito_lang.js",
        "stcgfb_ct.js"
      ],
      "css": [
        "jquery-ui.css",
        "common.css"
      ],
      "matches": [
        "https://*.facebook.com/*",
        "https://*.workplace.com/*",
        "https://task.sateraito.jp/ssogadget/*/management_tasks_auth*"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}