LOCKED MSO - SaaSからオンプレまで広くシングルサインオンを実現

LOCKED MSO - SaaSからオンプレまで広くシングルサインオンを実現

locked chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "LOCKED MSO - SaaSからオンプレまで広くシングルサインオンを実現",
  "version": "1.0.51",
  "description": "locked chrome extension",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-32.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js"
      ],
      "css": [
        "assets/css/contentStyle.chunk.css"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-48.png",
        "icon-32.png",
        "icon-16.png",
        "lockedlogo.png",
        "src/pages/content/urlMatchFormbaseAuthDialog/index.html",
        "src/pages/content/passwordUpdateSupportDialog/index.html",
        "src/pages/content/snackbar/index.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "tabs",
    "storage",
    "management",
    "scripting",
    "webNavigation",
    "alarms",
    "unlimitedStorage"
  ],
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAjfz/LDdUPQtkcRGkVLu8Xp3gUDYlrZNevO0pruxLXrfO5Yfm2M3/LbCAY+AJU2Ny6ugOg/OJRzGnVDghJ0z20Na7G5KByEx8oQM2106loYTIlHoUA5RzQ0KVBxrEIqmepHfyI+O26N049Hy2zC90Gq7cblP6TIpDOrA91KRgzMxXZA7hXOB1f8kI8ftfrZJPWycRAWRV0nNxbi/BFieKwkYmc4KbxbzvPAk9Bgsa76FWyAKCYpxM+BOrRTu8nXxniUI1HSaeQ5VUvauP7Y76X/OE3CLFcD8AOJCpIWMYvoJ15+gkeu7GyV9IJG2mmO2pxHyeAU9coY1CmxgE8iQT0QIDAQAB"
}