Extension Power

Extension Power

Extension Powerはオフィス電話の取り巻く環境をもっと「便利」に、もっと「簡単」に、且つ「パワフル」にレベルアップさせるCTIビジネスコラボレーション・ソフトウェアです。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "__MSG_appNameShort__",
  "version": "2.1.5.0",
  "author": "Trans Architect Co., Ltd.",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "ja",
  "commands": {},
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "css": [
        "styles/contentscript.css"
      ],
      "js": [
        "scripts/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/*",
        "images/*",
        "scripts/*",
        "styles/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self';",
    "isolated_world": "script-src 'self'; object-src 'self'; worker-src 'self';"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "permissions": [
    "tabs",
    "notifications",
    "background",
    "contextMenus",
    "idle",
    "activeTab",
    "storage",
    "scripting",
    "alarms"
  ],
  "minimum_chrome_version": "116.0"
}