Wordle Keyboard Fixer

Adds click and tap indications to the Wordle keyboard.
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": 2,
  "name": "Wordle Keyboard Fixer",
  "version": "1.4.1",
  "description": "Adds click and tap indications to the Wordle keyboard.",
  "content_scripts": [
    {
      "matches": [
        "*://*.nytimes.com/games/wordle/*"
      ],
      "js": [
        "wordle_fix.js"
      ],
      "css": [
        "wordle_fix.css"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "strict_min_version": "58.0",
      "id": "{47f72de5-c271-4ea3-ac23-cd3995602aa5}"
    },
    "gecko_android": {
      "strict_min_version": "120.0"
    }
  }
}