WordFinder

WordFinder

Look up words in WordFinder’s dictionaries directly from any web site.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_EXTENSION_NAME__",
  "short_name": "WordFinder",
  "version": "1.0.2",
  "default_locale": "en",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "images/wf16.png",
    "32": "images/wf32.png",
    "48": "images/wf48.png",
    "64": "images/wf64.png",
    "128": "images/wf128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "WordFinder"
  },
  "commands": {
    "wordFinderLookup": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "mac": "Command+Shift+L"
      },
      "description": "__MSG_SHORTCUT_LOOK_UP__"
    }
  },
  "web_accessible_resources": [
    "fonts/*.woff2",
    "static/css/*.css"
  ],
  "content_security_policy": "object-src 'self'; script-src 'self' 'sha256-3s5gDuFo7QW7bvn278FcjaE8owdvstZlEej721UUet4='",
  "manifest_version": 2
}