Whitaker's Words Helper

Whitaker's Words Helper

This extension uses the wonderful program, designed by William Whitaker, to easily get detailed and accurate Latin definitions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Whitaker's Words Helper",
  "short_name": "WWH",
  "version": "2.1.1",
  "description": "This extension uses the wonderful program, designed by William Whitaker, to easily get detailed and accurate Latin definitions.",
  "icons": {
    "16": "images/wwh16.png",
    "32": "images/wwh32.png",
    "48": "images/wwh48.png",
    "128": "images/wwh128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "host_permissions": [],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "util/util.js",
        "css/content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "popup/popup.html"
  }
}