Weblio エクステンション

Weblio エクステンション

ウェブリオ公式のエクステンション。キーワードを選択状態にすることで、キーワードの解説文をポップアップウィンドウ内で見ることができます。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "background": {
    "service_worker": "service_worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "ウェブリオ公式のエクステンション。キーワードを選択状態にすることで、キーワードの解説文をポップアップウィンドウ内で見ることができます。",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon16.png",
    "default_title": "Weblio エクステンション",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "name": "Weblio エクステンション",
  "permissions": [
    "contextMenus",
    "offscreen",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 3,
  "version": "3.0"
}