スカイメニュー

スカイメニュー

スカイメニュー

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "スカイメニュー",
  "version": "25.1.10.1000",
  "manifest_version": 3,
  "description": "スカイメニュー",
  "action": {},
  "permissions": [
    "nativeMessaging",
    "tabs",
    "activeTab",
    "desktopCapture",
    "storage",
    "unlimitedStorage",
    "idle",
    "history",
    "system.display",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/content.all.js"
      ]
    },
    {
      "run_at": "document_start",
      "matches": [
        "*://*/skymenu/*"
      ],
      "js": [
        "js/sharetab.js"
      ]
    },
    {
      "matches": [
        "*://*/skymenu/*/portal/screenshare*"
      ],
      "js": [
        "js/sharescreen.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/webappcontroller.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "html/staticcontents.html",
        "content/css/reflectionmemo.css",
        "js/version.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "icons": {
    "16": "content/img/16.png",
    "48": "content/img/48.png",
    "128": "content/img/128.png"
  },
  "minimum_chrome_version": "99"
}