Scrabble Word Finder

Supports 15 characters and two blank letters. Additional filters are also available to sort the words.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Scrabble Word Finder",
  "short_name": "Scrabble Word",
  "description": "Supports 15 characters and two blank letters. Additional filters are also available to sort the words.",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.03",
  "homepage_url": "https://scrabble-word.com",
  "action": {
    "default_icon": "favicon.png",
    "default_popup": "popup.html",
    "default_title": "Scrabble Word Finder"
  },
  "content_scripts": [
    {
      "matches": [
        "https://scrabble-word.com/scn/*",
        "https://wwf.zynga.com/wwf/web/r/production_dd/*",
        "https://wordswithfriends.com/*"
      ],
      "all_frames": true,
      "js": [
        "/scripts/content.js",
        "/scripts/jquery-3.3.1.min.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "content_security_policy": {
    "script-src": "'self' 'unsafe-eval'",
    "object-src": "'self'"
  }
}